diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-17 22:04:17 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-17 22:04:17 +0000 |
commit | 60f51d6688e98ed87d24e6e9d1f179ca5db8f07a (patch) | |
tree | 7c99579afb6e99ea7a76cc5e564db694bdc6d8aa /cpp/src/Ice/ServantFactoryManager.cpp | |
parent | fixes (diff) | |
download | ice-60f51d6688e98ed87d24e6e9d1f179ca5db8f07a.tar.bz2 ice-60f51d6688e98ed87d24e6e9d1f179ca5db8f07a.tar.xz ice-60f51d6688e98ed87d24e6e9d1f179ca5db8f07a.zip |
tons of fixes
Diffstat (limited to 'cpp/src/Ice/ServantFactoryManager.cpp')
-rw-r--r-- | cpp/src/Ice/ServantFactoryManager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/Ice/ServantFactoryManager.cpp b/cpp/src/Ice/ServantFactoryManager.cpp index 924f8729a3e..5064eef27c0 100644 --- a/cpp/src/Ice/ServantFactoryManager.cpp +++ b/cpp/src/Ice/ServantFactoryManager.cpp @@ -49,5 +49,9 @@ void IceInternal::ServantFactoryManager::destroy() { JTCSyncT<JTCMutex> sync(*this); + for (map<string, ::Ice::ServantFactoryPtr>::iterator p = 0; p != _factories.end(); ++p) + { + p->second->destroy(); + } _factories.clear(); } |