[maemo-commits] [maemo-commits] r15296 - in projects/haf/trunk/libhildonmime: debian libhildonmime
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Tue Mar 18 15:00:58 EET 2008
- Previous message: [maemo-commits] r15295 - projects/haf/trunk/hildon-help/src
- Next message: [maemo-commits] r15297 - projects/haf/trunk/libhildonmime/debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: kihamala Date: 2008-03-18 15:00:49 +0200 (Tue, 18 Mar 2008) New Revision: 15296 Modified: projects/haf/trunk/libhildonmime/debian/changelog projects/haf/trunk/libhildonmime/libhildonmime/hildon-mime-open.c Log: fix a crash Modified: projects/haf/trunk/libhildonmime/debian/changelog =================================================================== --- projects/haf/trunk/libhildonmime/debian/changelog 2008-03-18 11:45:09 UTC (rev 15295) +++ projects/haf/trunk/libhildonmime/debian/changelog 2008-03-18 13:00:49 UTC (rev 15296) @@ -1,3 +1,9 @@ +libhildonmime (2.0.2-1~unreleased) stable; urgency=low + + * Use 255 max. arguments for a D-Bus message instead of 256. Fixes: NB#76269 + + -- Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Tue, 18 Mar 2008 14:49:51 +0200 + libhildonmime (2.0.1-1) stable; urgency=low * Fixes: NB#80072, Speed contact applet proposal 'Add to Contacts' Modified: projects/haf/trunk/libhildonmime/libhildonmime/hildon-mime-open.c =================================================================== --- projects/haf/trunk/libhildonmime/libhildonmime/hildon-mime-open.c 2008-03-18 11:45:09 UTC (rev 15295) +++ projects/haf/trunk/libhildonmime/libhildonmime/hildon-mime-open.c 2008-03-18 13:00:49 UTC (rev 15296) @@ -317,7 +317,7 @@ dprint ("Adding arguments:"); - while (n_files < 256 && files) { + while (n_files < 255 && files) { const gchar *uri = files->data; if (g_utf8_validate (uri, -1, NULL)) {
- Previous message: [maemo-commits] r15295 - projects/haf/trunk/hildon-help/src
- Next message: [maemo-commits] r15297 - projects/haf/trunk/libhildonmime/debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]