diff options
author | Gordon Sim <gsim@apache.org> | 2008-11-03 18:42:37 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-11-03 18:42:37 +0000 |
commit | 925649afc99e2b82318042362c995295da0878eb (patch) | |
tree | 1940b7f4056dd5fc45e1a6a3d446dee0b79724fc /qpid/cpp | |
parent | 81f1c974ba6b8fa51c33785a8b947810792f2165 (diff) | |
download | qpid-python-925649afc99e2b82318042362c995295da0878eb.tar.gz |
This line seems not to be as redundant as I thought! Its removal seems to trigger some leaks for some platforms/cases. Adding it back for now.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@710124 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r-- | qpid/cpp/src/qpid/client/ConnectionImpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/client/ConnectionImpl.cpp b/qpid/cpp/src/qpid/client/ConnectionImpl.cpp index a3be69e017..ed296cbd4d 100644 --- a/qpid/cpp/src/qpid/client/ConnectionImpl.cpp +++ b/qpid/cpp/src/qpid/client/ConnectionImpl.cpp @@ -129,6 +129,7 @@ void ConnectionImpl::close() { if (!handler.isOpen()) return; handler.close(); + closed(CLOSE_CODE_NORMAL, "Closed by client"); } |