Commit cee34cb1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mscoree: Free argument buffer on error (Coverity).

parent 614ad0c8
......@@ -1423,7 +1423,10 @@ __int32 WINAPI _CorExeMain(void)
filenameA = WtoA(filename);
if (!filenameA)
{
HeapFree(GetProcessHeap(), 0, argv);
return -1;
}
FixupVTable(GetModuleHandleW(NULL));
......
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