summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-05-13 22:41:44 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-05-13 22:41:44 +0000
commitfb06f59b79ffadae934b7c76c1e516ed5624b105 (patch)
tree98f41806643908da940ab6d4a4ce273b4dcccfe7
parent4758ac22e1544427e20ee3efda2825a74e11e999 (diff)
downloadATCD-fb06f59b79ffadae934b7c76c1e516ed5624b105.tar.gz
ChangeLogTag:Tue May 13 15:38:29 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
-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)