diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-03 18:08:31 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-03 18:08:31 +0000 |
commit | ae899e981811eec7ad4ee2c7bf354174cf7dfeaf (patch) | |
tree | 8606155063f77cf50d0d28e335c544bd776b603a /cpp/src/Ice/Reference.cpp | |
parent | Added -bind_at_load, without this we get various crashes in the linker (diff) | |
download | ice-ae899e981811eec7ad4ee2c7bf354174cf7dfeaf.tar.bz2 ice-ae899e981811eec7ad4ee2c7bf354174cf7dfeaf.tar.xz ice-ae899e981811eec7ad4ee2c7bf354174cf7dfeaf.zip |
Bug 1327 - allow getClientProxy to return nil proxy
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r-- | cpp/src/Ice/Reference.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index 53307f531b8..61e0c1d44e2 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -735,8 +735,7 @@ IceInternal::RoutableReference::getRoutedEndpoints() const // If we route, we send everything to the router's client // proxy endpoints. // - ObjectPrx clientProxy = _routerInfo->getClientProxy(); - return clientProxy->__reference()->getEndpoints(); + return _routerInfo->getClientEndpoints(); } return vector<EndpointIPtr>(); } |