summaryrefslogtreecommitdiff
path: root/ace/Connector.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-07 16:04:34 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-07 16:04:34 +0000
commite531914ce80e0f7494566ac22062fee319f54437 (patch)
treecd87df25eebefd9d28c2d6c4a1d6b66ab438b4ef /ace/Connector.cpp
parent0b36fbbcbc727d9d59bd3bbd05184e677543c6e7 (diff)
downloadATCD-e531914ce80e0f7494566ac22062fee319f54437.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Connector.cpp')
-rw-r--r--ace/Connector.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/ace/Connector.cpp b/ace/Connector.cpp
index 57cef845384..5e8460e4300 100644
--- a/ace/Connector.cpp
+++ b/ace/Connector.cpp
@@ -574,6 +574,11 @@ template <class SH, PR_CO_1> int
ACE_Connector<SH, PR_CO_2>::fini (void)
{
ACE_TRACE ("ACE_Connector<SH, PR_CO_2>::fini");
+
+ // Make sure to call close here since our destructor might not be
+ // called if we're being dynamically linked via the svc.conf.
+ this->handler_map_.close ();
+
// Make sure we call our handle_close(), not a subclass's!
return ACE_Connector<SH, PR_CO_2>::handle_close ();
}