summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-02-13 23:43:12 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-02-13 23:43:12 +0000
commit5bcae29c2e621f89642c13b3ea91317bfe84df35 (patch)
tree43c2a0f88ee73f5c391469420a551862e61e1cfa
parent4123c3bc574dc962b3bd3a4129e28bb1f98eb9e2 (diff)
downloadATCD-5bcae29c2e621f89642c13b3ea91317bfe84df35.tar.gz
ChangeLogTag: Wed Feb 13 17:42:32 2002 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--ace/Configuration.cpp6
4 files changed, 19 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a6b5095f25c..628f36b5123 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Feb 13 17:42:32 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Configuration.cpp (operator=): Fixed a warning in g+
+ builds. Stupid mistake on my part :(.
+
Wed Feb 13 12:45:06 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* ace/Configuration.cpp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index a6b5095f25c..628f36b5123 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Wed Feb 13 17:42:32 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Configuration.cpp (operator=): Fixed a warning in g+
+ builds. Stupid mistake on my part :(.
+
Wed Feb 13 12:45:06 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* ace/Configuration.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index a6b5095f25c..628f36b5123 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Wed Feb 13 17:42:32 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Configuration.cpp (operator=): Fixed a warning in g+
+ builds. Stupid mistake on my part :(.
+
Wed Feb 13 12:45:06 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* ace/Configuration.cpp:
diff --git a/ace/Configuration.cpp b/ace/Configuration.cpp
index 02d1339617f..d8f5529e78d 100644
--- a/ace/Configuration.cpp
+++ b/ace/Configuration.cpp
@@ -382,10 +382,12 @@ int ACE_Configuration::operator== (const ACE_Configuration& rhs) const
{
rc = (* (thisCharData + count) == * (rhsCharData + count));
}
+
+ delete [] thisCharData;
+ delete [] rhsCharData;
}// end if the length's match
- delete[] thisData;
- delete[] rhsData;
+
}
// We should never have valueTypes of INVALID, therefore
// we're not comparing them. How would we since we have