diff --git a/plugins/ipod-sync/ChangeLog b/plugins/ipod-sync/ChangeLog index 7477a39af6..537a3c79dc 100644 --- a/plugins/ipod-sync/ChangeLog +++ b/plugins/ipod-sync/ChangeLog @@ -1,3 +1,9 @@ +2007-05-14 Srinivasa Ragavan + + ** Fix for bug #375234 from Vitaliy Ischenko + + * ipod.c: (find_ipod_mount_point): + 2007-04-10 Andre Klapper * plugins/ipod-sync/evolution-ipod-sync.c: diff --git a/plugins/ipod-sync/ipod.c b/plugins/ipod-sync/ipod.c index 3519951c5d..d5ea660056 100644 --- a/plugins/ipod-sync/ipod.c +++ b/plugins/ipod-sync/ipod.c @@ -173,6 +173,9 @@ find_ipod_mount_point (LibHalContext *ctx) fsusage = libhal_device_get_property_string (ctx, udi2, "volume.fsusage", NULL); + if (fsusage == NULL) + continue; + if (strncmp (fsusage, "filesystem", 10) == 0) { has_fs = 1;