[maemo-commits] [maemo-commits] r16861 - in projects/haf/trunk/ke-recv: debian src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Thu Dec 4 15:31:28 EET 2008
- Previous message: [maemo-commits] r16860 - projects/haf/branches/hildon-fm/fremantle/hildon-fm
- Next message: [maemo-commits] r16862 - projects/haf/tags/ke-recv
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: kihamala Date: 2008-12-04 15:31:28 +0200 (Thu, 04 Dec 2008) New Revision: 16861 Modified: projects/haf/trunk/ke-recv/debian/changelog projects/haf/trunk/ke-recv/src/events.c Log: fix for segfaults Modified: projects/haf/trunk/ke-recv/debian/changelog =================================================================== --- projects/haf/trunk/ke-recv/debian/changelog 2008-12-04 13:25:29 UTC (rev 16860) +++ projects/haf/trunk/ke-recv/debian/changelog 2008-12-04 13:31:28 UTC (rev 16861) @@ -1,3 +1,9 @@ +ke-recv (3.4-1) unstable; urgency=low + + * Fix segfaulting ULOG_DEBUG_F calls. + + -- Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Thu, 4 Dec 2008 15:30:52 +0200 + ke-recv (3.3-1) unstable; urgency=low * Added support for PC Suite mode. Modified: projects/haf/trunk/ke-recv/src/events.c =================================================================== --- projects/haf/trunk/ke-recv/src/events.c 2008-12-04 13:25:29 UTC (rev 16860) +++ projects/haf/trunk/ke-recv/src/events.c 2008-12-04 13:31:28 UTC (rev 16861) @@ -116,7 +116,7 @@ mmc->preferred_volume); if (mmc->preferred_volume != 1 && mmc->internal_card) { /* workaround for not yet partitioned systems */ - ULOG_DEBUG_F("%s: falling back to partition 1!"); + ULOG_DEBUG_F("falling back to partition 1!"); vol = get_nth_volume(mmc, 1); if (vol == NULL) return; @@ -616,7 +616,7 @@ mmc->preferred_volume); if (mmc->preferred_volume != 1 && mmc->internal_card) { /* workaround for not yet partitioned systems */ - ULOG_DEBUG_F("%s: falling back to partition 1!"); + ULOG_DEBUG_F("falling back to partition 1!"); vol = get_nth_volume(mmc, 1); if (vol == NULL || vol->dev_name == NULL) return; @@ -695,7 +695,7 @@ mmc->preferred_volume); if (mmc->preferred_volume != 1 && mmc->internal_card) { /* workaround for not yet partitioned systems */ - ULOG_DEBUG_F("%s: falling back to partition 1!"); + ULOG_DEBUG_F("falling back to partition 1!"); vol = get_nth_volume(mmc, 1); if (vol == NULL || vol->dev_name == NULL) return; @@ -823,7 +823,7 @@ ULOG_DEBUG_F("partition %d not found", mmc->preferred_volume); if (mmc->preferred_volume != 1 && mmc->internal_card) { /* workaround for not yet partitioned systems */ - ULOG_DEBUG_F("%s: falling back to partition 1!"); + ULOG_DEBUG_F("falling back to partition 1!"); l = get_nth_volume(mmc, 1); if (l == NULL || l->udi == NULL) return 0;
- Previous message: [maemo-commits] r16860 - projects/haf/branches/hildon-fm/fremantle/hildon-fm
- Next message: [maemo-commits] r16862 - projects/haf/tags/ke-recv
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]