diff options
author | Ted Ross <tross@apache.org> | 2011-06-14 18:02:25 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2011-06-14 18:02:25 +0000 |
commit | b779626e67bb5cc3220094b05e4f1b2f8eb8bbe2 (patch) | |
tree | 8e1943b7544f7c1520e562109bd20035c378adef /cpp/src | |
parent | 2905229c15b63a7b07a5e40a4d10885a06880f17 (diff) | |
download | qpid-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.cpp | 2 |
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()) { |