Commit 68aa42a4 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

kernel32: Fix OutputDebugStringA called with NULL pointer.

parent e16bcda4
......@@ -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 )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment