You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2011/02/07 17:46:28 UTC

svn commit: r1068008 - /activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/BlockingByteArrayInputStream.cpp

Author: tabish
Date: Mon Feb  7 16:46:27 2011
New Revision: 1068008

URL: http://svn.apache.org/viewvc?rev=1068008&view=rev
Log:
Fix build error under VC2010

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/BlockingByteArrayInputStream.cpp

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/BlockingByteArrayInputStream.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/BlockingByteArrayInputStream.cpp?rev=1068008&r1=1068007&r2=1068008&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/BlockingByteArrayInputStream.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/BlockingByteArrayInputStream.cpp Mon Feb  7 16:46:27 2011
@@ -31,7 +31,7 @@ BlockingByteArrayInputStream::BlockingBy
 
 ////////////////////////////////////////////////////////////////////////////////
 BlockingByteArrayInputStream::BlockingByteArrayInputStream( const unsigned char* buffer, int bufferSize ):
-    InputStream(), buffer(), pos(0), closing(false) {
+    InputStream(), buffer(), pos(), closing(false) {
 
     setByteArray( buffer, bufferSize );
 }