summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-01-23 17:50:31 +0000
committerMarc Laukien <marc@zeroc.com>2004-01-23 17:50:31 +0000
commitd558a3af64c1b1cbc8e188d7f13705dad3677ced (patch)
tree176be43bf5b11db91f9778b3df709d99d7a81ed6 /cpp/src/Ice/Proxy.cpp
parentcomment edit (diff)
downloadice-d558a3af64c1b1cbc8e188d7f13705dad3677ced.tar.bz2
ice-d558a3af64c1b1cbc8e188d7f13705dad3677ced.tar.xz
ice-d558a3af64c1b1cbc8e188d7f13705dad3677ced.zip
fixes
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index 1f6eb92aec0..19341ccd5b4 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -770,7 +770,10 @@ IceProxy::Ice::Object::__rethrowException(const LocalException& ex)
void
IceProxy::Ice::Object::__checkTwowayOnly(const char* name) const
{
- IceUtil::Mutex::Lock sync(*this);
+ //
+ // No mutex lock necessary, there is nothing mutable in this
+ // operation.
+ //
if(!ice_isTwoway())
{