diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-14 12:07:07 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-14 12:07:07 +0800 |
commit | d23aa43aeb5c2cefd7220fec956e4b5f71d64ed7 (patch) | |
tree | 1d1bef99ebdf6b8537f1d68617cd07614f58342a /plugins/ipod-sync | |
parent | bbd35744c01169887597ac1284071e037a1b84de (diff) | |
download | gsoc2013-evolution-d23aa43aeb5c2cefd7220fec956e4b5f71d64ed7.tar.gz gsoc2013-evolution-d23aa43aeb5c2cefd7220fec956e4b5f71d64ed7.tar.zst gsoc2013-evolution-d23aa43aeb5c2cefd7220fec956e4b5f71d64ed7.zip |
** Fix for bug #375234 from Vitaliy Ischenko
svn path=/trunk/; revision=33532
Diffstat (limited to 'plugins/ipod-sync')
-rw-r--r-- | plugins/ipod-sync/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/ipod-sync/ipod.c | 3 |
2 files changed, 9 insertions, 0 deletions
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 <sragavan@novell.com> + + ** Fix for bug #375234 from Vitaliy Ischenko + + * ipod.c: (find_ipod_mount_point): + 2007-04-10 Andre Klapper <a9016009@gmx.de> * 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; |