diff options
3 files changed, 9 insertions, 2 deletions
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog index 40c292bbe6e..58c5fa7b5de 100644 --- a/CIAO/ChangeLog +++ b/CIAO/ChangeLog @@ -1,3 +1,9 @@ +Mon Jun 20 13:58:32 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl> + + * connectors/dds4ccm/tests/KeyedWriter/Receiver/Writer_Receiver_exec.cpp: + * connectors/dds4ccm/tests/SetConnectorAttributes/Component/SetConnectorAttribute_Component_exec.cpp: + Fixed coverity errors + Mon Jun 20 08:02:38 UTC 2011 Marcel Smit <msmit@remedy.nl> * connectors/dds4ccm/docs/TestCoverage.ods: diff --git a/CIAO/connectors/dds4ccm/tests/KeyedWriter/Receiver/Writer_Receiver_exec.cpp b/CIAO/connectors/dds4ccm/tests/KeyedWriter/Receiver/Writer_Receiver_exec.cpp index 017fc50bd19..bbad15ffb04 100644 --- a/CIAO/connectors/dds4ccm/tests/KeyedWriter/Receiver/Writer_Receiver_exec.cpp +++ b/CIAO/connectors/dds4ccm/tests/KeyedWriter/Receiver/Writer_Receiver_exec.cpp @@ -119,7 +119,8 @@ namespace CIAO_Writer_Receiver_Impl Receiver_exec_i::Receiver_exec_i (void) : iterations_ (10) - , samples_received_ (0) + , keys_ (0) + , samples_received_ (0) { } diff --git a/CIAO/connectors/dds4ccm/tests/SetConnectorAttributes/Component/SetConnectorAttribute_Component_exec.cpp b/CIAO/connectors/dds4ccm/tests/SetConnectorAttributes/Component/SetConnectorAttribute_Component_exec.cpp index d8ce6e60844..bcaeb2d8e84 100644 --- a/CIAO/connectors/dds4ccm/tests/SetConnectorAttributes/Component/SetConnectorAttribute_Component_exec.cpp +++ b/CIAO/connectors/dds4ccm/tests/SetConnectorAttributes/Component/SetConnectorAttribute_Component_exec.cpp @@ -88,8 +88,8 @@ namespace CIAO_SetConnectorAttribute_SetConnectorAttributeComponent_Impl else { this->check_domain_id (pub); + this->check_profile (pub); } - this->check_profile (pub); } void |