diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2012-03-22 14:32:52 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2012-03-22 14:32:52 +0000 |
commit | 9627f7e90b1767547cef7f904624d7e9d4277e2f (patch) | |
tree | fc03c88963e6d4bdca1e8805ea3ddacab9389929 /TAO/orbsvcs/tests/Notify/lib | |
parent | b025adcae9f38b04b080beb01d05bbb8242287a0 (diff) | |
download | ATCD-9627f7e90b1767547cef7f904624d7e9d4277e2f.tar.gz |
Thu Mar 22 14:31:35 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp:
* orbsvcs/orbsvcs/Log/EventLog_i.cpp:
* orbsvcs/orbsvcs/Log/RTEventLogFactory_i.cpp:
* orbsvcs/orbsvcs/Log/RTEventLog_i.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorConsumerAdmin.cpp:
* orbsvcs/tests/FT_App/FT_TestReplica_i.cpp:
* orbsvcs/tests/FtRtEvent/PushSupplier.h:
* orbsvcs/tests/Notify/lib/Command_Builder.cpp:
* orbsvcs/tests/Notify/lib/Driver.cpp:
Coverity fixes
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib')
-rw-r--r-- | TAO/orbsvcs/tests/Notify/lib/Command_Builder.cpp | 3 | ||||
-rw-r--r-- | TAO/orbsvcs/tests/Notify/lib/Driver.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/Command_Builder.cpp b/TAO/orbsvcs/tests/Notify/lib/Command_Builder.cpp index debce6d572b..c3ee4624ec2 100644 --- a/TAO/orbsvcs/tests/Notify/lib/Command_Builder.cpp +++ b/TAO/orbsvcs/tests/Notify/lib/Command_Builder.cpp @@ -10,7 +10,8 @@ TAO_Notify_Tests_Command_Builder::TAO_Notify_Tests_Command_Builder (void) - :start_command_ (0) + : start_command_ (0), + last_command_ (0) { } diff --git a/TAO/orbsvcs/tests/Notify/lib/Driver.cpp b/TAO/orbsvcs/tests/Notify/lib/Driver.cpp index 742e65d3281..c7a89a57acf 100644 --- a/TAO/orbsvcs/tests/Notify/lib/Driver.cpp +++ b/TAO/orbsvcs/tests/Notify/lib/Driver.cpp @@ -63,7 +63,8 @@ check_supported_priorities (CORBA::ORB_ptr orb) } /*****************************************************************/ -TAO_Notify_Tests_Worker::TAO_Notify_Tests_Worker (void) +TAO_Notify_Tests_Worker::TAO_Notify_Tests_Worker (void) : + cmd_builder_ (0) { } |