Commit 0edd90da authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

mscoree: Remove redundant NULL check before HeapFree().

parent 5cc60352
......@@ -1809,7 +1809,7 @@ static MonoAssembly* CDECL mono_assembly_preload_hook_fn(MonoAssemblyName *aname
TRACE("skipping Windows GAC search due to override setting\n");
done:
if (cultureW) HeapFree(GetProcessHeap(), 0, cultureW);
HeapFree(GetProcessHeap(), 0, cultureW);
mono_free(stringname);
return result;
......
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