summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-05-08 13:57:47 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-05-08 13:57:47 +0000
commit28a9e7f55ff740fd0f83e61be23cbe23246b787c (patch)
treefbc8f2f12ff491750c035e5861ef76902e4fb7b5
parent1dd764787ecebf96cfa32e76edd68175645be926 (diff)
downloadATCD-28a9e7f55ff740fd0f83e61be23cbe23246b787c.tar.gz
ChangeLogTag:Tue May 8 09:01:13 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/tao/Object_Ref_Table.cpp2
2 files changed, 9 insertions, 2 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index a7a96b9dae4..78779fe1ba1 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Tue May 8 09:01:13 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/Object_Ref_Table.cpp (~TAO_Object_Ref_Table): Removed a
+ destroy () from the destructor. The destroy () has already been
+ invoked during ORB_Core::shutdown (). The second call to destroy
+ () really caused havoc in Win32 builds.
+
Tue May 8 08:17:13 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/ORB_Core.h: Added a TAO_Export to TAO_ORB_Core_Auto_Ptr
@@ -11,7 +18,7 @@ Tue May 8 07:32:15 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Set. When the ORB_Core gets destroyed, the destructor of the
Unbounded set is called. This creates problems as the allocators
have already been removed. We now destroy the list by calling
- reset () before the ORB_Core gets destroyed.
+ reset () before the ORB_Core gets destroyed.
Mon May 7 20:30:17 2001 Carlos O'Ryan <coryan@uci.edu>
diff --git a/TAO/tao/Object_Ref_Table.cpp b/TAO/tao/Object_Ref_Table.cpp
index a101a4d0b41..e0e820bdd52 100644
--- a/TAO/tao/Object_Ref_Table.cpp
+++ b/TAO/tao/Object_Ref_Table.cpp
@@ -20,7 +20,7 @@ TAO_Object_Ref_Table::TAO_Object_Ref_Table (void)
TAO_Object_Ref_Table::~TAO_Object_Ref_Table (void)
{
- this->destroy ();
+ // this->destroy ();
this->table_.close (); // Only call close() in this destructor!
}