summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-12-12 12:24:27 +0100
committerBenoit Foucher <benoit@zeroc.com>2012-12-12 12:24:27 +0100
commitedd426f3667aadc58764ac83bfb12a9899e59176 (patch)
treec7c20eed4a11b792cedd763ce7035c952032c106 /cpp/src/Ice/Proxy.cpp
parentAndroid demo SSL certificate fixes (diff)
downloadice-edd426f3667aadc58764ac83bfb12a9899e59176.tar.bz2
ice-edd426f3667aadc58764ac83bfb12a9899e59176.tar.xz
ice-edd426f3667aadc58764ac83bfb12a9899e59176.zip
Fixed ICE-5129 - thread safety issue when updating thread observers
Fixed bug where "ice_invoke" was used instead of the operation name for blobject invocations.
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index 64f8b238d70..5d930c0310b 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -535,7 +535,7 @@ IceProxy::Ice::Object::ice_invoke(const string& operation,
vector<Byte>& outEncaps,
const Context* context)
{
- InvocationObserver __observer(this, ice_invoke_name, context);
+ InvocationObserver __observer(this, operation, context);
int __cnt = 0;
while(true)
{