diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | src/ithumb-writer.c | 2 |
2 files changed, 12 insertions, 2 deletions
@@ -1,8 +1,18 @@ -2005-12-06 Jorg Schuler <jcsjcs at users.sourceforge.net> +2005-12-10 Jorg Schuler <jcsjcs at users.sourceforge.net> + + * src/ithumb-writer.c: fixed typo leading to segfault. + +2005-12-09 Jorg Schuler <jcsjcs at users.sourceforge.net> * src/ithumb-writer.c: create Artwork directory when attempting to write to it. + * src/itdb_artwork.c: fix compilation problem when gdkpixbuf is + not present. + + * src/hal-common.c: reverse order of include statements to fix + compilation error on some systems. + 2005-12-06 Jorg Schuler <jcsjcs at users.sourceforge.net> * src/itdb_itunesdb.c: change g_assert to g_return_if_fail (don't diff --git a/src/ithumb-writer.c b/src/ithumb-writer.c index 1975e34..111552a 100644 --- a/src/ithumb-writer.c +++ b/src/ithumb-writer.c @@ -123,7 +123,7 @@ ipod_image_get_ithmb_filename (const char *mount_point, gint correlation_id, gin if (path == NULL) { /* attempt to create directory */ gchar *pth = g_build_filename (mount_point, - paths[0], path[1], NULL); + paths[0], paths[1], NULL); mkdir (pth, 0777); g_free (pth); path = itdb_resolve_path (mount_point, |