lpszName of NULL is handled (removes some warnings).

diff --git a/controls/static.c b/controls/static.c
index 4b9cb75..56a71367 100644
--- a/controls/static.c
+++ b/controls/static.c
@@ -196,7 +196,7 @@
 			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)
 		);