You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by tr...@apache.org on 2011/06/14 20:02:25 UTC

svn commit: r1135724 - /qpid/trunk/qpid/cpp/src/qmf/ConsoleSession.cpp

Author: tross
Date: Tue Jun 14 18:02:25 2011
New Revision: 1135724

URL: http://svn.apache.org/viewvc?rev=1135724&view=rev
Log:
NO-JIRA - Fixed uninitialized variables in qmf::ConsoleSession.

Modified:
    qpid/trunk/qpid/cpp/src/qmf/ConsoleSession.cpp

Modified: qpid/trunk/qpid/cpp/src/qmf/ConsoleSession.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qmf/ConsoleSession.cpp?rev=1135724&r1=1135723&r2=1135724&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qmf/ConsoleSession.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qmf/ConsoleSession.cpp Tue Jun 14 18:02:25 2011
@@ -66,7 +66,7 @@ Subscription ConsoleSession::subscribe(c
 //========================================================================================
 
 ConsoleSessionImpl::ConsoleSessionImpl(Connection& c, const string& options) :
-    connection(c), domain("default"), maxAgentAgeMinutes(5),
+    connection(c), domain("default"), maxAgentAgeMinutes(5), listenOnDirect(true), strictSecurity(false),
     opened(false), thread(0), threadCanceled(false), lastVisit(0), lastAgePass(0),
     connectedBrokerInAgentList(false), schemaCache(new SchemaCache())
 {



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org