summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwilson_d <wilson_d@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-15 15:47:57 +0000
committerwilson_d <wilson_d@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-15 15:47:57 +0000
commit27d6ec7778f64c01e1f0d29be2b12e0df5820e0b (patch)
tree5e9073679d527a5a69b5f58be36dd0e985becb3b
parent53b800a75fb585f6744337535179520fc39f9426 (diff)
downloadATCD-27d6ec7778f64c01e1f0d29be2b12e0df5820e0b.tar.gz
ChangeLogTag: Wed Sep 15 10:46:07 2004 Dale Wilson <wilson_d@ociweb.com>
-rw-r--r--ChangeLog25
-rw-r--r--ace/Log_Msg.cpp2
2 files changed, 17 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 045d5b498b0..2447e8f332b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Sep 15 10:46:07 2004 Dale Wilson <wilson_d@ociweb.com>
+
+ * ace/Log_Msg.cpp:
+ Uninitialized static int was assumed to be zero.
+ It usually was.
+
+
Wed Sep 15 12:51:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* configure.ac:
@@ -6,18 +13,18 @@ Wed Sep 15 12:51:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Tue Sep 14 22:44:39 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * ace/Inet_Addr.cpp:
+ * ace/Inet_Addr.cpp:
- Fix for the problem reported by Charlie Duke, which is that
- ACE_INET_Addr::string_to_addr cannot accept an address string
- produced by ACE_INET_Addr::addr_to_string method. The output of
- addr_to_string method is of the form "[ipv4]:port" while the
- string_to_addr accepts "ipv4:port" i.e. cannot handle "[]".
+ Fix for the problem reported by Charlie Duke, which is that
+ ACE_INET_Addr::string_to_addr cannot accept an address string
+ produced by ACE_INET_Addr::addr_to_string method. The output of
+ addr_to_string method is of the form "[ipv4]:port" while the
+ string_to_addr accepts "ipv4:port" i.e. cannot handle "[]".
- The fix for this is not to include "[]" in
- string_to_addr. Thanks to Charlie Duke <cduke at fvc dot com>.
+ The fix for this is not to include "[]" in
+ string_to_addr. Thanks to Charlie Duke <cduke at fvc dot com>.
- * THANKS: Updated Charlie's email address.
+ * THANKS: Updated Charlie's email address.
Tue Sep 14 15:02:05 2004 Dale Wilson <wilson_d@ociweb.com>
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp
index 5865dcedddc..0b0e7ee6041 100644
--- a/ace/Log_Msg.cpp
+++ b/ace/Log_Msg.cpp
@@ -56,7 +56,7 @@ ACE_ALLOC_HOOK_DEFINE(ACE_Log_Msg)
ACE_thread_key_t *log_msg_tss_key (void)
{
- static ACE_thread_key_t key;
+ static ACE_thread_key_t key = 0;
return &key;
}