]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
* dbus/dbus-transport.c: fix invalid deref when checking if
authorJohn (J5) Palmieri <johnp@redhat.com>
Fri, 25 Aug 2006 19:56:00 +0000 (19:56 +0000)
committerJohn (J5) Palmieri <johnp@redhat.com>
Fri, 25 Aug 2006 19:56:00 +0000 (19:56 +0000)
  a vtable method exists (Patch from Christian Ehrlicher
  <ch dot ehrlicher at gmx dot de>)

ChangeLog
dbus/dbus-transport.c

index 86d0bf7b14198a21289bc78116bc8bb6913fa9e1..de683b75ef22a6c531a7cfb99bd93287405c84fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-08-25  John (J5) Palmieri  <johnp@redhat.com>
+
+       * dbus/dbus-transport.c: fix invalid deref when checking if
+       a vtable method exists (Patch from Christian Ehrlicher 
+       <ch dot ehrlicher at gmx dot de>)
+
 2006-08-25  John (J5) Palmieri  <johnp@redhat.com>
 
        * configure.in, dbus/Makefile.am, test/name-test/run-test.sh, 
index ca5f747d38c81f8b79a8c92cd52bfcd6a17f6bb7..e155cc460f33c4879b86a76d8b5dc21650d34470 100644 (file)
@@ -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);