MSVC: Fix potentially uninitialized variable error

MSVC doesn't like these and regards them as errors
This commit is contained in:
darkstar
2018-10-08 00:34:50 +02:00
parent f2184a6696
commit c3d1f59e88

View File

@@ -789,7 +789,7 @@ disk_add_proc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lParam)
{ {
wchar_t temp_path[512]; wchar_t temp_path[512];
char buf[512], *big_buf; char buf[512], *big_buf;
HWND h; HWND h = INVALID_HANDLE_VALUE;
uint64_t i = 0; uint64_t i = 0;
uint64_t temp; uint64_t temp;
FILE *f; FILE *f;