[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690

Alexandre Julliard julliard at winehq.org
Sun Jun 17 20:03:54 UTC 2012


The following commit has been merged in the wheezy branch:
commit 9e8f50e1e254631f73c60cc578c8bf5863e7a484
Author: Stefan Leichter <Stefan.Leichter at camline.com>
Date:   Wed May 30 22:47:34 2012 +0200

    kernel32: Fix OutputDebugStringA called with NULL pointer.
    (cherry picked from commit 68aa42a4191c50bb9bf2767c51a4b9c7b7aaef5e)

diff --git a/dlls/kernel32/debugger.c b/dlls/kernel32/debugger.c
index 7e1a860..528ba76 100644
--- a/dlls/kernel32/debugger.c
+++ b/dlls/kernel32/debugger.c
@@ -245,6 +245,8 @@ void WINAPI OutputDebugStringA( LPCSTR str )
     static HANDLE DBWinMutex = NULL;
     static BOOL mutex_inited = FALSE;
 
+    if (!str) str = "";
+
     /* send string to attached debugger */
     SERVER_START_REQ( output_debug_string )
     {

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list