summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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