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 | 27b687803cfe614c6fcf641b5301e28ef492d0df (patch) | |
tree | c05bba7a9ebdd3a4fa3a5bcc84d3e547a40ebded /cpp/src | |
parent | 65cec47fe8a346fa32b8463196875b94984128aa (diff) | |
download | qpid-python-27b687803cfe614c6fcf641b5301e28ef492d0df.tar.gz |
Fix valgrind error.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@663340 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/SessionState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/SessionState.cpp b/cpp/src/qpid/SessionState.cpp index d85a14c64c..9ef2f5f8fb 100644 --- a/cpp/src/qpid/SessionState.cpp +++ b/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; } |