diff options
author | Christophe Fergeau <teuf@gnome.org> | 2008-07-06 14:04:05 +0000 |
---|---|---|
committer | Christophe Fergeau <teuf@gnome.org> | 2008-07-06 14:04:05 +0000 |
commit | 6edb7b4d44fed3d36eef94fef00ac453403a1b92 (patch) | |
tree | e71c473e5b5889235e1bff80f5da352d9070027e /src/db-artwork-parser.c | |
parent | d629959f687e8ec0109f2295c66ae4ef00943d70 (diff) | |
download | libgpod-6edb7b4d44fed3d36eef94fef00ac453403a1b92.tar.gz libgpod-6edb7b4d44fed3d36eef94fef00ac453403a1b92.tar.xz libgpod-6edb7b4d44fed3d36eef94fef00ac453403a1b92.zip |
Remove non-useful argument to db_parse_context_destroy (patch from songbird)
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@2038 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'src/db-artwork-parser.c')
-rw-r--r-- | src/db-artwork-parser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/db-artwork-parser.c b/src/db-artwork-parser.c index 4d9aad7..62cf4a1 100644 --- a/src/db-artwork-parser.c +++ b/src/db-artwork-parser.c @@ -706,12 +706,12 @@ ipod_parse_artwork_db (Itdb_iTunesDB *itdb) } parse_mhfd (ctx, NULL); - db_parse_context_destroy (ctx, TRUE); + db_parse_context_destroy (ctx); return 0; error: if (ctx != NULL) { - db_parse_context_destroy (ctx, TRUE); + db_parse_context_destroy (ctx); } return -1; } @@ -779,7 +779,7 @@ ipod_parse_photo_db (Itdb_PhotoDB *photodb) return -1; } parse_mhfd (ctx, NULL); - db_parse_context_destroy (ctx, TRUE); + db_parse_context_destroy (ctx); /* Now we need to replace references to artwork_ids in the * photo albums with references to the actual artwork |