You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2018/03/14 22:11:45 UTC

[2/3] qpid-dispatch git commit: DISPATCH-943: do not wakeup the other connection on free as it may also be being freed

DISPATCH-943: do not wakeup the other connection on free as it may also be being freed


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/9bcf0831
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/9bcf0831
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/9bcf0831

Branch: refs/heads/master
Commit: 9bcf0831386bfd0cef1591e7a672624c7d2c1849
Parents: e62b5fb
Author: Gordon Sim <gs...@redhat.com>
Authored: Wed Mar 14 21:42:20 2018 +0000
Committer: Gordon Sim <gs...@redhat.com>
Committed: Wed Mar 14 22:05:44 2018 +0000

----------------------------------------------------------------------
 src/remote_sasl.c | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/9bcf0831/src/remote_sasl.c
----------------------------------------------------------------------
diff --git a/src/remote_sasl.c b/src/remote_sasl.c
index cda58c6..65dcab4 100644
--- a/src/remote_sasl.c
+++ b/src/remote_sasl.c
@@ -243,15 +243,11 @@ static void remote_sasl_free(pn_transport_t *transport)
             impl->downstream_released = true;
             if (impl->upstream_released) {
                 delete_qdr_sasl_relay_t(impl);
-            } else {
-                pn_connection_wake(impl->upstream);
             }
         } else {
             impl->upstream_released = true;
             if (impl->downstream_released) {
                 delete_qdr_sasl_relay_t(impl);
-            } else {
-                pn_connection_wake(impl->downstream);
             }
         }
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org