1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

WINELIB applications (like reaktivate) might have very long (C++)

symbols. Use a larger buffer.
This commit is contained in:
Marcus Meissner 2001-10-08 22:16:06 +00:00 committed by Alexandre Julliard
parent d6bd28222e
commit 27215d9f5a

View File

@ -367,7 +367,7 @@ BOOL DEBUG_GetSymbolValue( const char * name, const int lineno,
num = DEBUG_GSV_Helper(name, lineno, value, NUMDBGV, bp_flag);
if (!num && (name[0] != '_'))
{
char buffer[256];
char buffer[512];
assert(strlen(name) < sizeof(buffer) - 2); /* one for '_', one for '\0' */
buffer[0] = '_';