Vincent Povirk : shell32: Fix memory leak.

Alexandre Julliard julliard at winehq.org
Wed May 21 13:39:23 CDT 2014


Module: wine
Branch: master
Commit: ee13e10cf6d05c7d08dfebb9f04c70eb3e7a0a9e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ee13e10cf6d05c7d08dfebb9f04c70eb3e7a0a9e

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Wed May 21 11:02:14 2014 -0500

shell32: Fix memory leak.

---

 dlls/shell32/xdg.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/shell32/xdg.c b/dlls/shell32/xdg.c
index 70811f6..1504f1f 100644
--- a/dlls/shell32/xdg.c
+++ b/dlls/shell32/xdg.c
@@ -572,6 +572,7 @@ void XDG_FreeParsedFile(XDG_PARSED_FILE *parsed)
         SHFree(group);
         group = next;
     }
+    SHFree(parsed->contents);
     SHFree(parsed);
 }
 




More information about the wine-cvs mailing list