You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2013/04/22 18:17:13 UTC

svn commit: r1470605 - /qpid/trunk/qpid/cpp/src/tests/qpid-client-test.cpp

Author: gsim
Date: Mon Apr 22 16:17:13 2013
New Revision: 1470605

URL: http://svn.apache.org/r1470605
Log:
Fix warning about uninitialised variable when running test under valgrind; caused by r1469088, QPID-3689

Modified:
    qpid/trunk/qpid/cpp/src/tests/qpid-client-test.cpp

Modified: qpid/trunk/qpid/cpp/src/tests/qpid-client-test.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/qpid-client-test.cpp?rev=1470605&r1=1470604&r2=1470605&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/qpid-client-test.cpp (original)
+++ qpid/trunk/qpid/cpp/src/tests/qpid-client-test.cpp Mon Apr 22 16:17:13 2013
@@ -47,7 +47,7 @@ struct Args : public TestOptions {
     uint msgSize;
     bool verbose;
 
-    Args() : TestOptions("Simple test of Qpid c++ client; sends and receives a single message."), msgSize(26)
+    Args() : TestOptions("Simple test of Qpid c++ client; sends and receives a single message."), msgSize(26), verbose(false)
     {
         addOptions()
             ("size", optValue(msgSize, "N"), "message size")



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