diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | bus/connection.c | 2 |
2 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,12 @@ 2008-01-14 John (J5) Palmieri <johnp@redhat.com> + * patch by Kimmo Hämäläinen <kimmo dot hamalainen at nokia dot com> + + * bus/connection.c (bus_connection_complete): plug a possible + BusClientPolicy leak (FDO Bug #13242) + +2008-01-14 John (J5) Palmieri <johnp@redhat.com> + * patch by Frederic Crozat <fcrozat at mandriva dot com> (FDO Bz# 13268) diff --git a/bus/connection.c b/bus/connection.c index 89d80ddb..512a2311 100644 --- a/bus/connection.c +++ b/bus/connection.c @@ -1306,6 +1306,8 @@ bus_connection_complete (DBusConnection *connection, BUS_SET_OOM (error); dbus_free (d->name); d->name = NULL; + bus_client_policy_unref (d->policy); + d->policy = NULL; return FALSE; } } |