HTUtils.h bug

(using 5.3.2)

There's a bug in HTUtils.h, concerning DLLs and indirection: since the
symbol
WWW_TraceFlag is declared as "CONSTANT" in wwwdll.def, the indirection
is
incorrect and leads to an access violation...

So, the distinction DLL/no DLL need not be made: (lines 97ff)

#ifdef HTDEBUG
extern unsigned int     WWW_TraceFlag;
#define WWWTRACE	(WWW_TraceFlag)
#else
#define WWWTRACE	0
#endif /* HTDEBUG */


/oliver

Received on Tuesday, 14 August 2001 05:26:24 UTC