diff options
author | Havoc Pennington <hp@redhat.com> | 2003-02-27 05:12:39 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-02-27 05:12:39 +0000 |
commit | ff190005e5e518c1d78fd83b0da3642280ead84c (patch) | |
tree | 730cafef9a98ed8e4a964b879ee35e8acbec6018 /dbus/dbus-connection.c | |
parent | 13f70ce711630d7f70c0b11fa57639fad95e4afd (diff) |
2003-02-27 Havoc Pennington <hp@pobox.com>
* dbus/dbus-connection.c
(dbus_connection_send_message_with_reply_and_block): fix doh!
doh! doh! bug that resulted in never removing a reply from the
queue, no wonder we called get_reply_serial so much ;-)
* dbus/dbus-message.c (struct DBusMessage): cache reply serial
and client serial instead of demarshaling them every time
Diffstat (limited to 'dbus/dbus-connection.c')
-rw-r--r-- | dbus/dbus-connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/dbus-connection.c b/dbus/dbus-connection.c index 4990cff3..134736d2 100644 --- a/dbus/dbus-connection.c +++ b/dbus/dbus-connection.c @@ -1320,7 +1320,7 @@ dbus_connection_send_message_with_reply_and_block (DBusConnection *connectio if (_dbus_message_get_reply_serial (reply) == client_serial) { - _dbus_list_remove (&connection->incoming_messages, link); + _dbus_list_remove_link (&connection->incoming_messages, link); dbus_message_ref (reply); if (result) |