summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-18 22:21:22 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-18 22:21:22 +0000
commit066e67718dd8622af574920173a552dbabdbfed8 (patch)
tree1d1286ea6a1c94f9190540370015c88153809329
parente48ca799a86a65df7160f1d2391e05ed74310c88 (diff)
downloadATCD-066e67718dd8622af574920173a552dbabdbfed8.tar.gz
ChangeLogTag: Fri Apr 18 17:17:35 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-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_;