summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2011-06-14 18:02:25 +0000
committerTed Ross <tross@apache.org>2011-06-14 18:02:25 +0000
commit81470b02dfbc0c4d651df97cd9dd697db072402b (patch)
tree2c99685ba74358ffa72527152113af6f3d2ede77
parentaa8367c48e6144a7aae832c1e4a151d013916443 (diff)
downloadqpid-python-81470b02dfbc0c4d651df97cd9dd697db072402b.tar.gz
NO-JIRA - Fixed uninitialized variables in qmf::ConsoleSession.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1135724 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qmf/ConsoleSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qmf/ConsoleSession.cpp b/qpid/cpp/src/qmf/ConsoleSession.cpp
index 7b839930e1..5df0d83f12 100644
--- a/qpid/cpp/src/qmf/ConsoleSession.cpp
+++ b/qpid/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())
{