Commit 2765825c authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

kernelbase: Silence -Wsometimes-uninitialized clang warning.

parent df0726e3
......@@ -1428,7 +1428,7 @@ DWORD WINAPI DECLSPEC_HOTPATCH GetModuleFileNameExW( HANDLE process, HMODULE mod
WCHAR *name, DWORD size )
{
BOOL wow64, found = FALSE;
DWORD len;
DWORD len = 0;
if (!size) return 0;
......
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