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 | 7a759dc2cae9da9d0a5882c2b4c4dc0428c96e3c (patch) | |
tree | e71c473e5b5889235e1bff80f5da352d9070027e /src/db-artwork-parser.c | |
parent | 1cc7aea053dfc4013a6ad1b2be6eb1e658371b7e (diff) | |
download | libgpod-7a759dc2cae9da9d0a5882c2b4c4dc0428c96e3c.tar.gz libgpod-7a759dc2cae9da9d0a5882c2b4c4dc0428c96e3c.tar.xz libgpod-7a759dc2cae9da9d0a5882c2b4c4dc0428c96e3c.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 |