Skip to content

Commit 011ee3d

Browse files
committed
Fixed too many actual parameters for ZeroMemory.
1 parent c5e4acf commit 011ee3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReClass/Symbols.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ UndecorateSymbolNameUnicode(
412412
return 0;
413413
}
414414

415-
ZeroMemory( AnsiName, 0, AnsiNameLength );
415+
ZeroMemory( AnsiName, AnsiNameLength );
416416
if (!WideCharToMultiByte( CP_ACP, WC_COMPOSITECHECK | WC_SEPCHARS, name, -1, AnsiName, AnsiNameLength, NULL, NULL ))
417417
{
418418
FreeIt( AnsiName );

0 commit comments

Comments
 (0)