summaryrefslogtreecommitdiff
path: root/cpp/src
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
commitb779626e67bb5cc3220094b05e4f1b2f8eb8bbe2 (patch)
tree8e1943b7544f7c1520e562109bd20035c378adef /cpp/src
parent2905229c15b63a7b07a5e40a4d10885a06880f17 (diff)
downloadqpid-python-b779626e67bb5cc3220094b05e4f1b2f8eb8bbe2.tar.gz
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
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qmf/ConsoleSession.cpp2
1 files changed, 1 insertions, 1 deletions
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())
{