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 | 06d665c6ba2a74a3db7b77a79c8df1adfae46bc9 (patch) | |
| tree | 5edd96e4ad8438d567cb8e656cebd42e5b2cdf52 /cpp/src | |
| parent | 20a96be9f99b1f9f4cbe28cd4d034b8b94eed739 (diff) | |
| download | qpid-python-06d665c6ba2a74a3db7b77a79c8df1adfae46bc9.tar.gz | |
QPID-5995: Initialize messaging SenderContext delivery tag
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1617841 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/messaging/amqp/SenderContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/messaging/amqp/SenderContext.cpp b/cpp/src/qpid/messaging/amqp/SenderContext.cpp index 59e1832cfd..c282a86c22 100644 --- a/cpp/src/qpid/messaging/amqp/SenderContext.cpp +++ b/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() |
