diff options
| author | Christophe Fergeau <teuf@gnome.org> | 2005-11-30 19:18:47 +0000 |
|---|---|---|
| committer | Christophe Fergeau <teuf@gnome.org> | 2005-11-30 19:18:47 +0000 |
| commit | 0bb5aeec314260ec20e982ba6977911d7d6f2c3e (patch) | |
| tree | 1698dd1af205da23c511432f12d6ee8881928141 /src | |
| parent | 99e267a9c44b88fac8a93be4a9f35c0ed101c296 (diff) | |
| download | libgpod-0bb5aeec314260ec20e982ba6977911d7d6f2c3e.tar.gz libgpod-0bb5aeec314260ec20e982ba6977911d7d6f2c3e.tar.xz libgpod-0bb5aeec314260ec20e982ba6977911d7d6f2c3e.zip | |
2005-11-30 Christophe Fergeau <teuf@gnome.org>
* src/db-artwork-parser.c: (parse_mhni): don't crash if
ipod_image_new_from_mhni returns NULL
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1182 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'src')
| -rw-r--r-- | src/db-artwork-parser.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/db-artwork-parser.c b/src/db-artwork-parser.c index fe88b7e..6796bbe 100644 --- a/src/db-artwork-parser.c +++ b/src/db-artwork-parser.c @@ -158,11 +158,13 @@ parse_mhni (DBParseContext *ctx, iPodSong *song, GError *error) dump_mhni (mhni); thumb = ipod_image_new_from_mhni (mhni, song->itdb); - if (thumb != NULL) { - song->artwork->thumbnails = - g_list_append (song->artwork->thumbnails, thumb); + if (thumb == NULL) { + return 0; } + song->artwork->thumbnails = + g_list_append (song->artwork->thumbnails, thumb); + mhod_ctx = db_parse_context_get_sub_context (ctx, ctx->header_len); if (mhod_ctx == NULL) { return -1; |
