summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2015-02-26 21:56:10 +0000
committerAlan Conway <aconway@apache.org>2015-02-26 21:56:10 +0000
commit999cbfbe59a6e57b8828a45457d1e8edcbae1f50 (patch)
tree8881c73f9d1af1269e210e1e0f1fc14238505ac9
parent56d4e4fe39c3f7841c6245becfbead14996f25e5 (diff)
downloadqpid-python-999cbfbe59a6e57b8828a45457d1e8edcbae1f50.tar.gz
QPID-6415: Core dump in ha_tests and interlink_tests with proton 0.9 (missed)
With proton 0.9 you need call pn_connectin_free before pn_transport_free. Missed 2 cases in the previous commit. git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.32@1662581 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/broker/amqp/Connection.cpp2
-rw-r--r--qpid/cpp/src/qpid/messaging/amqp/ConnectionContext.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/broker/amqp/Connection.cpp b/qpid/cpp/src/qpid/broker/amqp/Connection.cpp
index 8d6516edee..e315e55843 100644
--- a/qpid/cpp/src/qpid/broker/amqp/Connection.cpp
+++ b/qpid/cpp/src/qpid/broker/amqp/Connection.cpp
@@ -165,8 +165,8 @@ Connection::~Connection()
{
if (ticker) ticker->cancel();
getBroker().getConnectionObservers().closed(*this);
- pn_transport_free(transport);
pn_connection_free(connection);
+ pn_transport_free(transport);
#ifdef HAVE_PROTON_EVENTS
pn_collector_free(collector);
#endif
diff --git a/qpid/cpp/src/qpid/messaging/amqp/ConnectionContext.cpp b/qpid/cpp/src/qpid/messaging/amqp/ConnectionContext.cpp
index 6630ea2e0d..c974f6c5c1 100644
--- a/qpid/cpp/src/qpid/messaging/amqp/ConnectionContext.cpp
+++ b/qpid/cpp/src/qpid/messaging/amqp/ConnectionContext.cpp
@@ -151,8 +151,8 @@ ConnectionContext::~ConnectionContext()
if (ticker) ticker->cancel();
close();
sessions.clear();
- pn_transport_free(engine);
pn_connection_free(connection);
+ pn_transport_free(engine);
}
bool ConnectionContext::isOpen() const