From: John (J5) Palmieri Date: Fri, 25 Aug 2006 19:56:00 +0000 (+0000) Subject: * dbus/dbus-transport.c: fix invalid deref when checking if X-Git-Tag: dbus-0.93~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ee4ac1a303b3c66ff300eef55abd5f5d312cc0a;p=thirdparty%2Fdbus.git * dbus/dbus-transport.c: fix invalid deref when checking if a vtable method exists (Patch from Christian Ehrlicher ) --- diff --git a/ChangeLog b/ChangeLog index 86d0bf7b1..de683b75e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-08-25 John (J5) Palmieri + + * dbus/dbus-transport.c: fix invalid deref when checking if + a vtable method exists (Patch from Christian Ehrlicher + ) + 2006-08-25 John (J5) Palmieri * configure.in, dbus/Makefile.am, test/name-test/run-test.sh, diff --git a/dbus/dbus-transport.c b/dbus/dbus-transport.c index ca5f747d3..e155cc460 100644 --- a/dbus/dbus-transport.c +++ b/dbus/dbus-transport.c @@ -68,7 +68,7 @@ live_messages_size_notify (DBusCounter *counter, /* disable or re-enable the read watch for the transport if * required. */ - if (* transport->vtable->live_messages_changed) + if (transport->vtable->live_messages_changed) (* transport->vtable->live_messages_changed) (transport); _dbus_transport_unref (transport);