Repository: qpid-dispatch Updated Branches: refs/heads/master 4226b9fd7 -> 7b1c3d3c8
DISPATCH-173 - Turn off write processing of FDs that are closed for output. Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/7b1c3d3c Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/7b1c3d3c Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/7b1c3d3c Branch: refs/heads/master Commit: 7b1c3d3c802f74b5d5065106215679af31057a7f Parents: 4226b9f Author: Ted Ross <[email protected]> Authored: Mon Sep 28 12:43:30 2015 -0400 Committer: Ted Ross <[email protected]> Committed: Mon Sep 28 12:43:30 2015 -0400 ---------------------------------------------------------------------- src/posix/driver.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/7b1c3d3c/src/posix/driver.c ---------------------------------------------------------------------- diff --git a/src/posix/driver.c b/src/posix/driver.c index eed8e2f..5eb7c55 100644 --- a/src/posix/driver.c +++ b/src/posix/driver.c @@ -749,7 +749,8 @@ void qdpn_connector_process(qdpn_connector_t *c) c->output_done = true; c->status &= ~PN_SEL_WR; } - } + } else + c->status &= ~PN_SEL_WR; // Closed? --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
