diff options
author | Alan Conway <aconway@apache.org> | 2008-06-04 18:52:24 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-06-04 18:52:24 +0000 |
commit | dd5d148cd4bc062cd9db0ed8e4321fc41c6e3ae3 (patch) | |
tree | 4b3e74e297dd3a4ffbb5acbfcaed09e1677e7cb0 /qpid/cpp/src | |
parent | 746498dde8ade9c29f15a27edb7fde87fbbfd373 (diff) | |
download | qpid-python-dd5d148cd4bc062cd9db0ed8e4321fc41c6e3ae3.tar.gz |
Fix valgrind error.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@663340 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r-- | qpid/cpp/src/qpid/SessionState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/SessionState.cpp b/qpid/cpp/src/qpid/SessionState.cpp index d85a14c64c..9ef2f5f8fb 100644 --- a/qpid/cpp/src/qpid/SessionState.cpp +++ b/qpid/cpp/src/qpid/SessionState.cpp @@ -92,7 +92,7 @@ bool SessionPoint::operator==(const SessionPoint& x) const { SessionState::SendState::SendState() : unflushedSize(), replaySize(), bytesSinceKnownCompleted() {} -SessionState::ReceiveState::ReceiveState() {} +SessionState::ReceiveState::ReceiveState() : bytesSinceKnownCompleted() {} SessionPoint SessionState::senderGetCommandPoint() { return sender.sendPoint; } SequenceSet SessionState::senderGetIncomplete() const { return sender.incomplete; } |