1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

kernelbase: Silence -Wsometimes-uninitialized clang warning.

This commit is contained in:
Jacek Caban 2023-12-09 11:28:13 +01:00 committed by Alexandre Julliard
parent df0726e359
commit 2765825c9e

View file

@ -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;