winedbg: Increase buffer for function names

André Hentschel nerv at dawncrow.de
Tue May 31 13:17:34 CDT 2011


e.g. mangled function names are pretty long and are cut off very early here (the other functions seem to be fine)
---
 programs/winedbg/info.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/programs/winedbg/info.c b/programs/winedbg/info.c
index 51cf207..bc59eed 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));
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list