Commit 79f1d863 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

fusion: Fix processor arch string leak (Valgrind).

parent 6d1a3c6e
......@@ -111,6 +111,7 @@ static ULONG WINAPI IAssemblyNameImpl_Release(IAssemblyName *iface)
HeapFree(GetProcessHeap(), 0, This->displayname);
HeapFree(GetProcessHeap(), 0, This->name);
HeapFree(GetProcessHeap(), 0, This->culture);
HeapFree(GetProcessHeap(), 0, This->procarch);
HeapFree(GetProcessHeap(), 0, This);
}
......
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