summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tao/ORB_Core.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index f1d3d7dc25a..c16d8906b9d 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Tue May 13 15:38:29 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
+
+ * tao/ORB_Core.cpp (destroy_interceptors):
+
+ Corrected emulated exception macro within ACE_TRY block.
+ ACE_TRY_THROW, not ACE_THROW.
+
Tue May 13 10:57:22 2003 Chad Elliott <elliott_c@ociweb.com>
* tao/Typecode.cpp:
diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp
index 13a08daa3f9..a8235b9e5d0 100644
--- a/TAO/tao/ORB_Core.cpp
+++ b/TAO/tao/ORB_Core.cpp
@@ -2023,7 +2023,7 @@ TAO_ORB_Core::destroy_interceptors (ACE_ENV_SINGLE_ARG_DECL)
if (adapter == 0)
{
- ACE_THROW (CORBA::INTERNAL ());
+ ACE_TRY_THROW (CORBA::INTERNAL ());
}
for (size_t k = 0; k < len; ++k)