Increased the diesel parser stringlength

This commit is contained in:
Michiel Broek 2005-02-03 20:44:17 +00:00
parent 7d2e269c05
commit 9f38169b56
3 changed files with 32 additions and 29 deletions

View File

@ -7,6 +7,9 @@ v0.71.2 16-Jan-2005
Changed rfc-2045 name x-mac to mac. Changed x-ibmpc to cp437.
This allows rfc mime headers to show official names.
libdiesel.a:
Changed the maximum string length from 2560 to 4096 characters.
mbcico:
Added protection during binkp receive for zero bytes compressed
data frames, this will case uncompress error -5 because zero

View File

@ -24,7 +24,7 @@ int tracing = TRUE; /* Trace macro evalution */
/* Local variables. */
#define MAXARGS 10 /* Maximum arguments to a macro */
#define MAXSTR 2560 /* Maximum string length */
#define MAXSTR 4096 /* Maximum string length */ /* Was 2560 */
#define MAXDEPTH 32 /* Maximum recursion depth for eval */
#define MACROCHAR '@' /* Macro trigger character */

View File

@ -4,7 +4,7 @@
* Purpose ...............: MBSE BBS functions for TURBODIESEL
*
*****************************************************************************
* Copyright (C) 1997-2004
* Copyright (C) 1997-2005
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
@ -38,13 +38,9 @@ static int firstrandom = TRUE;
void MacroVars( const char *codes, const char *fmt, ...)
{
char *tmp1, *tmp2;
char *tmp1, *tmp2, *vs, vc;
va_list ap;
int j;
int dieselrc;
char *vs;
int vd;
char vc;
int j, dieselrc, vd;
double vf;
tmp1 = calloc(MAXSTR, sizeof(char));
@ -74,6 +70,10 @@ void MacroVars( const char *codes, const char *fmt, ...)
dieselrc = diesel(tmp1,tmp2);
if (dieselrc) {
Syslog('!', "MacroVars error %d argument %d, macro %c type %c", dieselrc, j, codes[j], fmt[j]);
if (fmt[j] == 's')
Syslogp('!', printable(va_arg(ap, char *), 0));
Syslogp('!', printable(tmp1, 0));
Syslogp('!', printable(tmp2, 0));
}
}
va_end(ap);