diff options
| author | Gordon Sim <gsim@apache.org> | 2014-07-16 10:19:44 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2014-07-16 10:19:44 +0000 |
| commit | 15867f4d1415fc9a91821c61cb5fdd34f32cbeb6 (patch) | |
| tree | 01cc22ec690434bf41b7f10afb0de624159345e8 /cpp | |
| parent | af5244f7dc693513922a66ad11771b24bd2bb38e (diff) | |
| download | qpid-python-15867f4d1415fc9a91821c61cb5fdd34f32cbeb6.tar.gz | |
QPID-4947: ensure member variable is always initialised
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1610960 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/AclHost.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/AclHost.h b/cpp/src/qpid/AclHost.h index decaf3cad3..3c4bbe1ce3 100644 --- a/cpp/src/qpid/AclHost.h +++ b/cpp/src/qpid/AclHost.h @@ -46,7 +46,7 @@ class AclHost { /** Empty AclHost. */ AclHost() : allAddresses(false) {} - explicit AclHost(const std::string& hostSpec) { parse(hostSpec); } + explicit AclHost(const std::string& hostSpec) : allAddresses(false) { parse(hostSpec); } QPID_COMMON_EXTERN std::string comparisonDetails() const { if (loSAptr.get()) { |
