summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/OpenSSLPluginI.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-05-14 18:44:07 +0000
committerMark Spruiell <mes@zeroc.com>2002-05-14 18:44:07 +0000
commit64f1590349701e5a759ead38a27e3bf2f14443ec (patch)
treec89ad8745e79693471d2dbd60d626064c411004c /cpp/src/IceSSL/OpenSSLPluginI.cpp
parentfixes (diff)
downloadice-64f1590349701e5a759ead38a27e3bf2f14443ec.tar.bz2
ice-64f1590349701e5a759ead38a27e3bf2f14443ec.tar.xz
ice-64f1590349701e5a759ead38a27e3bf2f14443ec.zip
fixing exception handling in plug-in initialization
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLPluginI.cpp')
-rw-r--r--cpp/src/IceSSL/OpenSSLPluginI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/OpenSSLPluginI.cpp b/cpp/src/IceSSL/OpenSSLPluginI.cpp
index d3c410cb76e..487091e25bc 100644
--- a/cpp/src/IceSSL/OpenSSLPluginI.cpp
+++ b/cpp/src/IceSSL/OpenSSLPluginI.cpp
@@ -76,7 +76,7 @@ create(const CommunicatorPtr& communicator, const string& name, const StringSeq&
}
catch (...)
{
- plugin->__decRef();
+ Ice::PluginPtr ptr = plugin; // Reclaim the plug-in instance
throw;
}