WIN: Fix some more uninitialized variable issues

This commit is contained in:
darkstar
2018-02-21 22:48:09 +01:00
parent d66f26ae8b
commit c832d0a91b
3 changed files with 5 additions and 5 deletions

View File

@@ -763,7 +763,7 @@ ui_init(int nCmdShow)
WCHAR title[200];
WNDCLASSEX wincl; /* buffer for main window's class */
MSG messages; /* received-messages buffer */
HWND hwnd; /* handle for our window */
HWND hwnd = 0; /* handle for our window */
HACCEL haccel; /* handle to accelerator table */
int bRet;