summaryrefslogtreecommitdiff
path: root/cpp/demo/IceBox/hello/HelloServiceI.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2008-05-08 15:06:13 +1000
committerMichi Henning <michi@zeroc.com>2008-05-08 15:06:13 +1000
commitd74d3d2b2f443a46825292475227be42279d4476 (patch)
tree2eda600511121b9f4fd70396ffd2ff3b6b9ad507 /cpp/demo/IceBox/hello/HelloServiceI.cpp
parentFixed bug 3102 (diff)
downloadice-d74d3d2b2f443a46825292475227be42279d4476.tar.bz2
ice-d74d3d2b2f443a46825292475227be42279d4476.tar.xz
ice-d74d3d2b2f443a46825292475227be42279d4476.zip
Bug 3097 - Smart pointer formal parameter not exception safe
Diffstat (limited to 'cpp/demo/IceBox/hello/HelloServiceI.cpp')
-rw-r--r--cpp/demo/IceBox/hello/HelloServiceI.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/demo/IceBox/hello/HelloServiceI.cpp b/cpp/demo/IceBox/hello/HelloServiceI.cpp
index de6ee933dde..e9c7437d201 100644
--- a/cpp/demo/IceBox/hello/HelloServiceI.cpp
+++ b/cpp/demo/IceBox/hello/HelloServiceI.cpp
@@ -39,7 +39,8 @@ void
HelloServiceI::start(const string& name, const Ice::CommunicatorPtr& communicator, const Ice::StringSeq& args)
{
_adapter = communicator->createObjectAdapter(name);
- _adapter->add(new HelloI, communicator->stringToIdentity("hello"));
+ Demo::HelloPtr hello = new HelloI;
+ _adapter->add(hello, communicator->stringToIdentity("hello"));
_adapter->activate();
}