From 411d63472024b7908b57001f2bfe3cb04ff74394 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 22 May 2010 02:32:28 +0000 Subject: [PATCH] [USER32] Fix uninitialized variable svn path=/trunk/; revision=47296 --- reactos/dll/win32/user32/windows/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/user32/windows/window.c b/reactos/dll/win32/user32/windows/window.c index bd4541c2cd2..2427cd76ee0 100644 --- a/reactos/dll/win32/user32/windows/window.c +++ b/reactos/dll/win32/user32/windows/window.c @@ -186,7 +186,7 @@ User32CreateWindowEx(DWORD dwExStyle, UNICODE_STRING ClassName; WNDCLASSEXA wceA; WNDCLASSEXW wceW; - HWND Handle; + HWND Handle = NULL; #if 0 DbgPrint("[window] User32CreateWindowEx style %d, exstyle %d, parent %d\n", dwStyle, dwExStyle, hWndParent);