dbus/dbus dbus-transport.c,1.47,1.48

John Palmieri johnp at kemper.freedesktop.org
Fri Aug 25 12:56:02 PDT 2006


Update of /cvs/dbus/dbus/dbus
In directory kemper:/tmp/cvs-serv1275/dbus

Modified Files:
	dbus-transport.c 
Log Message:
* 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>)


Index: dbus-transport.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-transport.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- dbus-transport.c	3 Aug 2006 20:34:36 -0000	1.47
+++ dbus-transport.c	25 Aug 2006 19:56:00 -0000	1.48
@@ -68,7 +68,7 @@
   /* 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);



More information about the dbus-commit mailing list