You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2013/12/06 17:43:15 UTC

svn commit: r1548589 - /qpid/branches/0.26/qpid/cpp/src/qpid/ha/TxReplicator.cpp

Author: aconway
Date: Fri Dec  6 16:43:15 2013
New Revision: 1548589

URL: http://svn.apache.org/r1548589
Log:
NO-JIRA: Fix use of intrusive_ptr.reset, not available on RHEL5.

Copied from trun r1546398

Modified:
    qpid/branches/0.26/qpid/cpp/src/qpid/ha/TxReplicator.cpp

Modified: qpid/branches/0.26/qpid/cpp/src/qpid/ha/TxReplicator.cpp
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/src/qpid/ha/TxReplicator.cpp?rev=1548589&r1=1548588&r2=1548589&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/src/qpid/ha/TxReplicator.cpp (original)
+++ qpid/branches/0.26/qpid/cpp/src/qpid/ha/TxReplicator.cpp Fri Dec  6 16:43:15 2013
@@ -237,7 +237,7 @@ void TxReplicator::backups(const string&
 
 void TxReplicator::end(sys::Mutex::ScopedLock&) {
     ended = true;
-    txBuffer.reset();
+    txBuffer = 0;
     // QueueReplicator::destroy cancels subscription to the primary tx-queue
     // which allows the primary to clean up resources.
     sys::Mutex::ScopedUnlock u(lock);



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org