From 3ea13c9c49fa738b97b9614884d8cfaea357932b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Tue, 31 May 2011 20:17:34 +0200 Subject: [PATCH] winedbg: Increase buffer for function names. --- programs/winedbg/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winedbg/info.c b/programs/winedbg/info.c index 51cf207d277..bc59eed1b16 100644 --- a/programs/winedbg/info.c +++ b/programs/winedbg/info.c @@ -833,7 +833,7 @@ void info_win32_exception(void) break; case EXCEPTION_WINE_STUB: { - char dll[32], name[64]; + char dll[32], name[256]; memory_get_string(dbg_curr_process, (void*)rec->ExceptionInformation[0], TRUE, FALSE, dll, sizeof(dll));