Repository: qpid-dispatch Updated Branches: refs/heads/master 0f5a35936 -> 120593812
DISPATCH-298 - Fixed a while loop that would, under common circumstances, never exit. Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/12059381 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/12059381 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/12059381 Branch: refs/heads/master Commit: 120593812b71bbd138aa2a94cbf18b5efc43a73f Parents: 0f5a359 Author: Ted Ross <[email protected]> Authored: Wed Apr 27 15:11:20 2016 -0400 Committer: Ted Ross <[email protected]> Committed: Thu Apr 28 08:36:13 2016 -0400 ---------------------------------------------------------------------- src/router_core/router_core.c | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/12059381/src/router_core/router_core.c ---------------------------------------------------------------------- diff --git a/src/router_core/router_core.c b/src/router_core/router_core.c index 6562abe..f5b2474 100644 --- a/src/router_core/router_core.c +++ b/src/router_core/router_core.c @@ -280,6 +280,7 @@ void qdr_del_connection_ref(qdr_connection_ref_list_t *ref_list, qdr_connection_ free_qdr_connection_ref_t(ref); break; } + ref = DEQ_NEXT(ref); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
