diff options
author | Phil Mesnier <mesnier_p@ociweb.com> | 2006-05-23 13:08:15 +0000 |
---|---|---|
committer | Phil Mesnier <mesnier_p@ociweb.com> | 2006-05-23 13:08:15 +0000 |
commit | f7eace8fbe8345b5c4542ebae3594f6c434ac293 (patch) | |
tree | 6431b0f48d4a8914522e6409662653f001a30a93 | |
parent | d29428b0f877a36a528b619d03dd9d3e9f2a4a18 (diff) | |
download | ATCD-f7eace8fbe8345b5c4542ebae3594f6c434ac293.tar.gz |
ChangeLog tag:Tue May 23 13:05:03 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | ace/Log_Msg.cpp | 1 | ||||
-rw-r--r-- | ace/Timeprobe.cpp | 3 |
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index f1a94939ec2..54c12d1fbf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Tue May 23 13:05:03 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com> + + * ace/Log_Msg.cpp: + Fixing a memory leak found by valgrind. + + * ace/Timeprobe.cpp: + Added missing include - this wouldn't comple with both noinline + and ACE_COMPILE_TIMEPROPE set. + Mon May 22 21:13:15 UTC 2006 Iliyan Jeliazkov <iliyan@ociweb.com> * bin/diff-builds.pl: diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp index c4f8b7adaf9..71ae2bb6f79 100644 --- a/ace/Log_Msg.cpp +++ b/ace/Log_Msg.cpp @@ -2223,6 +2223,7 @@ ACE_Log_Msg::log_hexdump (ACE_Log_Priority log_priority, buf); delete [] msg_buf; + delete [] buf; return 0; } diff --git a/ace/Timeprobe.cpp b/ace/Timeprobe.cpp index 4dd6962329d..aea68f74ba0 100644 --- a/ace/Timeprobe.cpp +++ b/ace/Timeprobe.cpp @@ -6,9 +6,10 @@ ACE_RCSID(ace, Timeprobe, "$Id$") #if defined (ACE_COMPILE_TIMEPROBES) +#include "ace/Timeprobe.h" + #if !defined (__ACE_INLINE__) #include "ace/Timeprobe.inl" #endif /* __ACE_INLINE__ */ #endif /* ACE_COMPILE_TIMEPROBES */ - |