diff options
| author | Charles E. Rolke <chug@apache.org> | 2014-08-13 21:36:48 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2014-08-13 21:36:48 +0000 |
| commit | 9e99d5c22596852f239053cb715750c1d78233cd (patch) | |
| tree | 0aa600934a008dbf980eb2367195b6b3dc6955a3 /qpid/cpp | |
| parent | 1b7ca83cb82bfc5b5db8867ba76d0b7e134d4c55 (diff) | |
| download | qpid-python-9e99d5c22596852f239053cb715750c1d78233cd.tar.gz | |
QPID-5995: Initialize messaging SenderContext delivery tag
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1617841 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp b/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp index 59e1832cfd..c282a86c22 100644 --- a/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp +++ b/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp @@ -45,6 +45,7 @@ SenderContext::SenderContext(pn_session_t* session, const std::string& n, const address(a), helper(address), sender(pn_sender(session, n.c_str())), capacity(50), unreliable(helper.isUnreliable()), + nextId(0), setToOnSend(setToOnSend_) {} SenderContext::~SenderContext() |
