From 3bc21101aac68e8cd022f8f4524fcf67b2a7835f Mon Sep 17 00:00:00 2001 From: fgerlits Date: Fri, 2 Feb 2007 16:25:59 +0000 Subject: [PATCH] variable initialization inside a switch case does not compile on some versions of gcc; fixed --- campcaster/src/modules/core/src/OptionsContainer.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/campcaster/src/modules/core/src/OptionsContainer.cxx b/campcaster/src/modules/core/src/OptionsContainer.cxx index 01fdb5815..661c81193 100644 --- a/campcaster/src/modules/core/src/OptionsContainer.cxx +++ b/campcaster/src/modules/core/src/OptionsContainer.cxx @@ -353,16 +353,18 @@ xmlpp::Node * OptionsContainer :: createNode(OptionItemString optionItem) throw () { xmlpp::Element * rootNode = optionsDocument.get_root_node(); + xmlpp::Element * element = 0; + xmlpp::Node * attribute = 0; // only supports the serialDeviceName option item, for now switch (optionItem) { case serialDeviceName : - xmlpp::Element * element = dynamic_cast( + element = dynamic_cast( getNode("serialPort")); if (!element) { element = rootNode->add_child("serialPort"); } - xmlpp::Node * attribute = dynamic_cast( + attribute = dynamic_cast( getNode("serialPort/@path")); if (!attribute) { attribute = element->set_attribute("path", "");