summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJorg Schuler <jcsjcs@users.sourceforge.net>2008-06-29 04:04:20 +0000
committerJorg Schuler <jcsjcs@users.sourceforge.net>2008-06-29 04:04:20 +0000
commitf2ccfe9d3dbff5055d3a5028ed6994ce1d1ddb86 (patch)
tree64bb4b22f1e965aac05f5b40914c59d62758d486 /src
parentdf8ef06ef02bf304b1bdea8ee3e62d433a25b214 (diff)
downloadlibgpod-f2ccfe9d3dbff5055d3a5028ed6994ce1d1ddb86.tar.gz
libgpod-f2ccfe9d3dbff5055d3a5028ed6994ce1d1ddb86.tar.xz
libgpod-f2ccfe9d3dbff5055d3a5028ed6994ce1d1ddb86.zip
* src/ithumb-writer.c (itdb_write_ithumb_files): fix bug when
writing photos (loop variable "it" re-used inside loop). Rename loop variable to "itw" also in case of writing artwork. git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@2023 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'src')
-rw-r--r--src/ithumb-writer.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ithumb-writer.c b/src/ithumb-writer.c
index 46acd70..9880e8d 100644
--- a/src/ithumb-writer.c
+++ b/src/ithumb-writer.c
@@ -1566,10 +1566,10 @@ itdb_write_ithumb_files (Itdb_DB *db)
}
type = track->artwork->thumbnail->data_type;
if (type != ITDB_THUMB_TYPE_IPOD) {
- GList *it;
+ GList *itw;
thumb_ipod = (Itdb_Thumb_Ipod *)itdb_thumb_ipod_new ();
- for (it = writers; it != NULL; it = it->next) {
- write_thumbnail (it->data,
+ for (itw = writers; itw != NULL; itw = itw->next) {
+ write_thumbnail (itw->data,
track->artwork,
thumb_ipod);
}
@@ -1591,9 +1591,10 @@ itdb_write_ithumb_files (Itdb_DB *db)
}
type = photo->thumbnail->data_type;
if (type != ITDB_THUMB_TYPE_IPOD) {
+ GList *itw;
thumb_ipod = (Itdb_Thumb_Ipod *)itdb_thumb_ipod_new ();
- for (it = writers; it != NULL; it = it->next) {
- write_thumbnail (it->data, photo, thumb_ipod);
+ for (itw = writers; itw != NULL; itw = itw->next) {
+ write_thumbnail (itw->data, photo, thumb_ipod);
}
itdb_thumb_free (photo->thumbnail);
photo->thumbnail = (Itdb_Thumb *)thumb_ipod;