summaryrefslogtreecommitdiff
path: root/TAO/tao/ORB_Core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/ORB_Core.cpp')
-rw-r--r--TAO/tao/ORB_Core.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp
index a12a151848c..06f93f054f6 100644
--- a/TAO/tao/ORB_Core.cpp
+++ b/TAO/tao/ORB_Core.cpp
@@ -1956,12 +1956,14 @@ void
TAO_ORB_Core::destroy_interceptors (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC (())
{
- size_t len = 0; // The length of the interceptor array.
- size_t ilen = 0; // The incremental length of the interceptor array.
+
ACE_TRY
{
#if TAO_HAS_INTERCEPTORS == 1
+ size_t len = 0; // The length of the interceptor array.
+ size_t ilen = 0; // The incremental length of the interceptor array.
+
TAO_ClientRequestInterceptor_List::TYPE &client_interceptors =
this->client_request_interceptors_.interceptors ();
@@ -2014,7 +2016,8 @@ TAO_ORB_Core::destroy_interceptors (ACE_ENV_SINGLE_ARG_DECL)
if (this->ior_interceptor_adapter_ != 0)
{
- this->ior_interceptor_adapter_->destroy_interceptors (ACE_ENV_SINGLE_ARG_DECL);
+ this->ior_interceptor_adapter_->destroy_interceptors (
+ ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
}