Commit 27215d9f authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

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

symbols. Use a larger buffer.
parent d6bd2822
...@@ -367,7 +367,7 @@ BOOL DEBUG_GetSymbolValue( const char * name, const int lineno, ...@@ -367,7 +367,7 @@ BOOL DEBUG_GetSymbolValue( const char * name, const int lineno,
num = DEBUG_GSV_Helper(name, lineno, value, NUMDBGV, bp_flag); num = DEBUG_GSV_Helper(name, lineno, value, NUMDBGV, bp_flag);
if (!num && (name[0] != '_')) if (!num && (name[0] != '_'))
{ {
char buffer[256]; char buffer[512];
assert(strlen(name) < sizeof(buffer) - 2); /* one for '_', one for '\0' */ assert(strlen(name) < sizeof(buffer) - 2); /* one for '_', one for '\0' */
buffer[0] = '_'; buffer[0] = '_';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment