Commit 4ef4d6d5 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

lpszName of NULL is handled (removes some warnings).

parent 0e62bbac
......@@ -196,7 +196,7 @@ LRESULT WINAPI StaticWndProc( HWND32 hWnd, UINT32 uMsg, WPARAM32 wParam,
wndPtr->dwStyle);
return 1;
}
if (!HIWORD(cs->lpszName)) {
if (!HIWORD(cs->lpszName) && (cs->lpszName)) {
FIXME(static,"windowName is 0x%04x, not doing DefWindowProc\n",
LOWORD(cs->lpszName)
);
......
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