Nikolay Sivov : winedbg: Double dll name buffer size for unimplemented function exception.

Alexandre Julliard julliard at winehq.org
Tue Nov 10 13:46:24 CST 2020


Module: wine
Branch: stable
Commit: 755512bd9f660e8f9182f59fed7dadbd36715188
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=755512bd9f660e8f9182f59fed7dadbd36715188

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Sun Sep 20 21:47:17 2020 +0300

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

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 51fbcc0c23e3217b79a27391eafc911773ca060a)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 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));




More information about the wine-cvs mailing list