winhelp: Fix a memory leak

Andrew Talbot andrew.talbot at talbotville.com
Tue Oct 23 12:55:31 CDT 2007


Changelog:
    winhelp: Fix a memory leak.

diff --git a/programs/winhelp/hlpfile.c b/programs/winhelp/hlpfile.c
index 417148e..8882a1a 100644
--- a/programs/winhelp/hlpfile.c
+++ b/programs/winhelp/hlpfile.c
@@ -580,7 +580,11 @@ static BYTE*    HLPFILE_DecompressGfx(BY
         if (!tmp) return FALSE;
         HLPFILE_UncompressLZ77(src, src + csz, tmp);
         dst = tmp2 = HeapAlloc(GetProcessHeap(), 0, sz);
-        if (!dst) return FALSE;
+        if (!dst)
+        {
+            HeapFree(GetProcessHeap(), 0, tmp);
+            return FALSE;
+        }
         HLPFILE_UncompressRLE(tmp, tmp + sz77, &tmp2, sz);
         if (tmp2 - dst != sz)
             WINE_WARN("Bogus gfx sizes (LZ77+RunLen): %u / %u\n", tmp2 - dst, sz);



More information about the wine-patches mailing list