summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tao/Any.cpp2
2 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 1c29040fa85..2e363725815 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Fri Apr 18 17:17:35 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tao/Any.cpp:
+
+ Fixed bug in assignment operator. Thanks to Ossama Othman
+ <ossama@uci.edu> for reporting the problem in the
+ PICurrent test.
+
Fri Apr 18 18:04:44 2003 Irfan Pyarali <irfan@oomworks.com>
* tests/Bug_1020_Basic_Regression/Bug_1020_Basic_Regression.dsw
diff --git a/TAO/tao/Any.cpp b/TAO/tao/Any.cpp
index 0a3ba6c6a7c..f4d2b5acc09 100644
--- a/TAO/tao/Any.cpp
+++ b/TAO/tao/Any.cpp
@@ -165,7 +165,7 @@ CORBA::Any::operator= (const CORBA::Any &rhs)
{
if (this->impl_ != 0)
{
- this->impl_->free_value ();
+ this->impl_->_remove_ref ();
}
this->impl_ = rhs.impl_;