[maemo-commits] [maemo-commits] r16183 - in projects/haf/trunk/sapwood: . server
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Tue Sep 23 10:22:53 EEST 2008
- Previous message: [maemo-commits] r16182 - projects/connectivity/bluez-debian/trunk
- Next message: [maemo-commits] r16184 - in projects/haf/branches/hildon-thumbnail/daemonize: . daemon
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: herzi Date: 2008-09-23 10:22:43 +0300 (Tue, 23 Sep 2008) New Revision: 16183 Modified: projects/haf/trunk/sapwood/ChangeLog projects/haf/trunk/sapwood/server/sapwood-server.c Log: 2008-09-23 Sven Herzberg <sven at imendio.com> Fix a possible double-free intorduced by r15921 * server/sapwood-server.c (process_buffer): drop the g_free() call on the node; the g_hash_table_remove() will care about this Modified: projects/haf/trunk/sapwood/ChangeLog =================================================================== --- projects/haf/trunk/sapwood/ChangeLog 2008-09-22 23:52:52 UTC (rev 16182) +++ projects/haf/trunk/sapwood/ChangeLog 2008-09-23 07:22:43 UTC (rev 16183) @@ -1,3 +1,10 @@ +2008-09-23 Sven Herzberg <sven at imendio.com> + + Fix a possible double-free intorduced by r15921 + + * server/sapwood-server.c (process_buffer): drop the g_free() call on + the node; the g_hash_table_remove() will care about this + 2008-09-03 Sven Herzberg <sven at imendio.com> added missing files Modified: projects/haf/trunk/sapwood/server/sapwood-server.c =================================================================== --- projects/haf/trunk/sapwood/server/sapwood-server.c 2008-09-22 23:52:52 UTC (rev 16182) +++ projects/haf/trunk/sapwood/server/sapwood-server.c 2008-09-23 07:22:43 UTC (rev 16183) @@ -413,7 +413,6 @@ if (node->refcnt == 0) { g_hash_table_remove (cleanup, GUINT_TO_POINTER(req->id)); - g_free (node); } } else
- Previous message: [maemo-commits] r16182 - projects/connectivity/bluez-debian/trunk
- Next message: [maemo-commits] r16184 - in projects/haf/branches/hildon-thumbnail/daemonize: . daemon
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]