From 21ead72ec644ac367031863f03c41d4776d6f8f1 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 10 Sep 2012 20:40:59 +0000 Subject: QPID-4293: HA broker crashes on startup Caused by invalid enum value in un-initialized member. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1383104 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/ha/BrokerInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/cpp/src') diff --git a/qpid/cpp/src/qpid/ha/BrokerInfo.cpp b/qpid/cpp/src/qpid/ha/BrokerInfo.cpp index c8bd1a14be..cecb9b0bfe 100644 --- a/qpid/cpp/src/qpid/ha/BrokerInfo.cpp +++ b/qpid/cpp/src/qpid/ha/BrokerInfo.cpp @@ -44,7 +44,7 @@ using types::Variant; using framing::FieldTable; BrokerInfo::BrokerInfo(const std::string& host, uint16_t port_, const types::Uuid& id) : - hostName(host), port(port_), systemId(id) + hostName(host), port(port_), systemId(id), status(JOINING) { updateLogId(); } -- cgit v1.2.1