summaryrefslogtreecommitdiff
path: root/ACE/tests/Multicast_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-01-21 08:20:00 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-01-21 08:20:00 +0000
commit55872eca2cd1a6ccf30e2b6573d4bb0833297e9a (patch)
tree48132bee6d170a35febecb3eb5810e28641f5e99 /ACE/tests/Multicast_Test.cpp
parenta992990efb990ddbe47f195b55400e0e44aa74ea (diff)
downloadATCD-55872eca2cd1a6ccf30e2b6573d4bb0833297e9a.tar.gz
Thu Jan 21 08:13:30 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Time_Value_Test.cpp: * tests/tests.mpc: * tests/run_test.lst: * tests/Bug_2434_Regression_Test.cpp: Moved the 64bit overflow test which fails on 64bit systems to its own file and marked that as not fixed
Diffstat (limited to 'ACE/tests/Multicast_Test.cpp')
-rw-r--r--ACE/tests/Multicast_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Multicast_Test.cpp b/ACE/tests/Multicast_Test.cpp
index b3c22a41c11..8aca62de09b 100644
--- a/ACE/tests/Multicast_Test.cpp
+++ b/ACE/tests/Multicast_Test.cpp
@@ -506,8 +506,8 @@ MCT_Event_Handler::mcast (void)
int
MCT_Event_Handler::find (const char *buf)
{
- size_t size = this->address_vec_.size ();
- size_t i;
+ size_t const size = this->address_vec_.size ();
+ size_t i = 0;
for (i = 0; i < size; ++i)
{
if (ACE_OS::strcasecmp (buf, this->address_vec_[i]->c_str ()) == 0)
@@ -672,7 +672,7 @@ MCT_Task::~MCT_Task (void)
int
MCT_Task::open (void *)
{
- MCT_Event_Handler *handler;
+ MCT_Event_Handler *handler = 0;
ACE_INET_Addr addr = this->config_.group_start ();
int groups = this->config_.groups ();