[PATCH] winedbg: loadstringW gets charactersize, not bytes

Marcus Meissner marcus at jet.franken.de
Wed Jan 18 15:40:25 CST 2012


---
 programs/winedbg/crashdlg.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/winedbg/crashdlg.c b/programs/winedbg/crashdlg.c
index 39e9bce..f0b28a5 100644
--- a/programs/winedbg/crashdlg.c
+++ b/programs/winedbg/crashdlg.c
@@ -153,11 +153,11 @@ static void save_crash_log( HWND hwnd )
     memset( &save, 0, sizeof(save) );
     lstrcpyW( path, default_name );
 
-    LoadStringW( GetModuleHandleW(0), IDS_TEXT_FILES, buffer, sizeof(buffer) );
+    LoadStringW( GetModuleHandleW(0), IDS_TEXT_FILES, buffer, sizeof(buffer)/sizeof(buffer[0]) );
     p = buffer + lstrlenW(buffer) + 1;
     lstrcpyW(p, txt_files);
     p += lstrlenW(p) + 1;
-    LoadStringW( GetModuleHandleW(0), IDS_ALL_FILES, p, sizeof(buffer) - (p - buffer) );
+    LoadStringW( GetModuleHandleW(0), IDS_ALL_FILES, p, sizeof(buffer)/sizeof(buffer[0]) - (p - buffer) );
     p += lstrlenW(p) + 1;
     lstrcpyW(p, all_files);
     p += lstrlenW(p) + 1;
-- 
1.7.3.4




More information about the wine-patches mailing list