diff options
author | teuf <teuf@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2008-02-02 18:16:28 +0000 |
---|---|---|
committer | teuf <teuf@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2008-02-02 18:16:28 +0000 |
commit | 840430bb63535035e6aaaa3313596044a58951a0 (patch) | |
tree | 15dd013eea478c9d7e2688ddb95dabda6cc1770e | |
parent | 8bf5a5408271c370e90e4dac472d933920a75fcb (diff) | |
download | libgpod-840430bb63535035e6aaaa3313596044a58951a0.tar.gz libgpod-840430bb63535035e6aaaa3313596044a58951a0.tar.xz libgpod-840430bb63535035e6aaaa3313596044a58951a0.zip |
Fix potential memory leaks
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1944 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/db-artwork-parser.c | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-02-30 Christophe Fergeau <teuf@gnome.org> + + * src/db-artwork-parser.c: add missing g_free that could cause + memory leaks + 2008-30-01 Christophe Fergeau <teuf@gnome.org> Patch by Martin Aumueller diff --git a/src/db-artwork-parser.c b/src/db-artwork-parser.c index bbeba53..e56ac9f 100644 --- a/src/db-artwork-parser.c +++ b/src/db-artwork-parser.c @@ -309,6 +309,7 @@ parse_mhii (DBParseContext *ctx, GError *error) g_free (mhod_ctx); mhod_ctx = db_parse_context_get_sub_context (ctx, cur_offset); } + g_free (mhod_ctx); return 0; } @@ -393,6 +394,7 @@ parse_mhba (DBParseContext *ctx, GError *error) g_free (mhia_ctx); mhia_ctx = db_parse_context_get_sub_context (ctx, cur_offset); } + g_free (mhia_ctx); photodb = db_get_photodb (ctx->db); g_return_val_if_fail (photodb, -1); photodb->photoalbums = g_list_append (photodb->photoalbums, @@ -433,6 +435,7 @@ parse_mhl (DBParseContext *ctx, GError *error, g_free (mhi_ctx); mhi_ctx = db_parse_context_get_sub_context (ctx, cur_offset); } + g_free (mhi_ctx); return 0; |