diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-12-12 12:24:27 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-12-12 12:24:27 +0100 |
commit | edd426f3667aadc58764ac83bfb12a9899e59176 (patch) | |
tree | c7c20eed4a11b792cedd763ce7035c952032c106 /cpp/src/Ice/Proxy.cpp | |
parent | Android demo SSL certificate fixes (diff) | |
download | ice-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.cpp | 2 |
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) { |