Repository: qpid-dispatch Updated Branches: refs/heads/master 452450285 -> cdca96666
DISPATCH-254 - Removed optimization that freed the qd_bitmask_t. The freeing of the delivery frees the bitmask as well Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/cdca9666 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/cdca9666 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/cdca9666 Branch: refs/heads/master Commit: cdca966666424da706bf43d4f405c940dcf7933e Parents: 4524502 Author: Ganesh Murthy <[email protected]> Authored: Tue Apr 5 10:18:57 2016 -0400 Committer: Ganesh Murthy <[email protected]> Committed: Tue Apr 5 10:18:57 2016 -0400 ---------------------------------------------------------------------- src/router_core/transfer.c | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/cdca9666/src/router_core/transfer.c ---------------------------------------------------------------------- diff --git a/src/router_core/transfer.c b/src/router_core/transfer.c index f05e96f..02c7d2a 100644 --- a/src/router_core/transfer.c +++ b/src/router_core/transfer.c @@ -367,8 +367,6 @@ static int qdr_link_forward_CT(qdr_core_t *core, qdr_link_t *link, qdr_delivery_ qdr_delivery_release_CT(core, dlv); } } else if (fanout > 0) { - qd_bitmask_free(dlv->link_exclusion); - dlv->link_exclusion = 0; if (dlv->settled) { // // The delivery is settled. Keep it off the unsettled list and issue --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
