From: John (J5) Palmieri Date: Fri, 10 Feb 2006 21:44:15 +0000 (+0000) Subject: 2006-02-10 John (J5) Palmieri X-Git-Tag: dbus-0.61~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34bb5b690b6d8d79edcb7dbd9abda4c1ab2bdc5e;p=thirdparty%2Fdbus.git 2006-02-10 John (J5) Palmieri * bus/connection.c (bus_connections_expect_reply): Make pending reply limit not common to all connections (Bug #5416) Patch from Kimmo Hämäläinen --- diff --git a/ChangeLog b/ChangeLog index f1c4dd6d6..2beb2ad95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-02-10 John (J5) Palmieri + + * bus/connection.c (bus_connections_expect_reply): Make + pending reply limit not common to all connections (Bug #5416) + Patch from Kimmo Hämäläinen + 2006-02-10 John (J5) Palmieri * tools/dbus-launch.c: Fixed csh syntax output (Bug #5720) diff --git a/bus/connection.c b/bus/connection.c index 90c6b75b8..d15a4266a 100644 --- a/bus/connection.c +++ b/bus/connection.c @@ -1606,7 +1606,8 @@ bus_connections_expect_reply (BusConnections *connections, link = _dbus_list_get_next_link (&connections->pending_replies->items, link); - ++count; + if (pending->will_get_reply == will_get_reply) + ++count; } if (count >=