[maemo-commits] [maemo-commits] r18687 - in projects/haf/trunk/ke-recv: debian mmc-utils
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Wed Jun 10 09:55:27 EEST 2009
- Previous message: [maemo-commits] r18686 - in projects/haf/trunk/maemo-launcher: debian launcher
- Next message: [maemo-commits] r18688 - in projects/haf/trunk/hildon-thumbnail: . daemon
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: kihamala Date: 2009-06-10 09:55:21 +0300 (Wed, 10 Jun 2009) New Revision: 18687 Modified: projects/haf/trunk/ke-recv/debian/changelog projects/haf/trunk/ke-recv/mmc-utils/mmc-pre-unmount.c Log: avoid mmc-pre-unmount crash Modified: projects/haf/trunk/ke-recv/debian/changelog =================================================================== --- projects/haf/trunk/ke-recv/debian/changelog 2009-06-10 06:32:36 UTC (rev 18686) +++ projects/haf/trunk/ke-recv/debian/changelog 2009-06-10 06:55:21 UTC (rev 18687) @@ -1,3 +1,11 @@ +ke-recv (3.20-1~unreleased) unstable; urgency=low + + * Fixes: NB#121472 - mmc-pre-unmount crashes on mass storage mode when + memory is full + * Changes for the new USB handling architecture. + + -- Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Wed, 10 Jun 2009 09:47:20 +0300 + ke-recv (3.19-1) unstable; urgency=low * Fixes: NB#119586 - Unsafe signal handler in ke-recv Modified: projects/haf/trunk/ke-recv/mmc-utils/mmc-pre-unmount.c =================================================================== --- projects/haf/trunk/ke-recv/mmc-utils/mmc-pre-unmount.c 2009-06-10 06:32:36 UTC (rev 18686) +++ projects/haf/trunk/ke-recv/mmc-utils/mmc-pre-unmount.c 2009-06-10 06:55:21 UTC (rev 18687) @@ -64,6 +64,9 @@ GList *l; monitor = gnome_vfs_get_volume_monitor (); + if (monitor == NULL) + return 0; + l = gnome_vfs_volume_monitor_get_mounted_volumes (monitor); for (; l != NULL; l = l->next) { GnomeVFSVolume *v;
- Previous message: [maemo-commits] r18686 - in projects/haf/trunk/maemo-launcher: debian launcher
- Next message: [maemo-commits] r18688 - in projects/haf/trunk/hildon-thumbnail: . daemon
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]