[PATCH] winedbg: Double dll name buffer size for unimplemented function exception.

Nikolay Sivov nsivov at codeweavers.com
Sun Sep 20 13:47:17 CDT 2020


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---

Showed up in https://bugs.winehq.org/show_bug.cgi?id=49873,
for api-ms-win-crt-convert-l1-1-0.dll.

 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 123cbc934ef..4e8580db0d4 100644
--- a/programs/winedbg/info.c
+++ b/programs/winedbg/info.c
@@ -914,7 +914,7 @@ void info_win32_exception(void)
         break;
     case EXCEPTION_WINE_STUB:
         {
-            char dll[32], name[256];
+            char dll[64], name[256];
             memory_get_string(dbg_curr_process,
                               (void*)rec->ExceptionInformation[0], TRUE, FALSE,
                               dll, sizeof(dll));
-- 
2.28.0




More information about the wine-devel mailing list