summaryrefslogtreecommitdiff
path: root/qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-27 21:23:40 +0000
committerAlan Conway <aconway@apache.org>2007-03-27 21:23:40 +0000
commitab19c12851d40de5f2a330d898e181909b827ea9 (patch)
tree55c084689be462e5b08b97b44d021ddf1eb83ec6 /qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp
parent23c5446b9425bfaed254a93fc2250c54adddfc80 (diff)
downloadqpid-python-ab19c12851d40de5f2a330d898e181909b827ea9.tar.gz
* cpp/tests/BrokerChannelTest.cpp: Fix leak.
* cpp/lib/broker/Connection.h: signature fix, pass const& instead of *. * cpp/lib/client/IncomingMessage.cpp: Correct error codes. * cpp/lib/broker/Reference.cpp: Fix TODO. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@523085 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp')
-rw-r--r--qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp b/qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp
index 503dfddbb7..5edb72baee 100644
--- a/qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp
+++ b/qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp
@@ -71,7 +71,7 @@ void LFSessionContext::read(){
}else{
ProtocolInitiation protocolInit;
if(protocolInit.decode(in)){
- handler->initiated(&protocolInit);
+ handler->initiated(protocolInit);
initiated = true;
if(debug) std::cout << "INIT [" << &socket << "]" << std::endl;
}