diff options
author | Alan Conway <aconway@apache.org> | 2007-03-27 21:23:40 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-03-27 21:23:40 +0000 |
commit | ab19c12851d40de5f2a330d898e181909b827ea9 (patch) | |
tree | 55c084689be462e5b08b97b44d021ddf1eb83ec6 /qpid/cpp/lib/common/sys/apr/LFSessionContext.cpp | |
parent | 23c5446b9425bfaed254a93fc2250c54adddfc80 (diff) | |
download | qpid-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.cpp | 2 |
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; } |