From b779626e67bb5cc3220094b05e4f1b2f8eb8bbe2 Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Tue, 14 Jun 2011 18:02:25 +0000 Subject: NO-JIRA - Fixed uninitialized variables in qmf::ConsoleSession. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1135724 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qmf/ConsoleSession.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp') diff --git a/cpp/src/qmf/ConsoleSession.cpp b/cpp/src/qmf/ConsoleSession.cpp index 7b839930e1..5df0d83f12 100644 --- a/cpp/src/qmf/ConsoleSession.cpp +++ b/cpp/src/qmf/ConsoleSession.cpp @@ -66,7 +66,7 @@ Subscription ConsoleSession::subscribe(const string& q, const string& f, const s //======================================================================================== 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()) { -- cgit v1.2.1