Sync to Wine-20050111:

Michael Stefaniuc <[email protected]>
Missing HeapFree's + 1 LocalFree (found by smatch).

svn path=/trunk/; revision=12930
This commit is contained in:
Gé van Geldorp
2005-01-11 21:37:29 +00:00
parent 011cd29d57
commit 4702ede529
+3 -1
View File
@@ -121,8 +121,10 @@ HRESULT WINAPI Extract(EXTRACTdest *dest, LPCSTR what)
TRACE("extracting to dir: %s\n", debugstr_a(dir));
/* FIXME: what to do on failure? */
if (!process_cabinet(what, dir, FALSE, FALSE, dest))
if (!process_cabinet(what, dir, FALSE, FALSE, dest)) {
LocalFree(dir);
return E_OUTOFMEMORY;
}
LocalFree(dir);