diff options
author | Marc Laukien <marc@zeroc.com> | 2003-02-06 20:39:02 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-02-06 20:39:02 +0000 |
commit | 8c47a19fe0a38c6c9a6e97b7859df7f9b5a8b6fb (patch) | |
tree | 8fd580420dad30c88fc38c5e8940b9e68ffed297 /cpp/src/Ice/IncomingAsync.cpp | |
parent | do not use Ice version in service shared library name (diff) | |
download | ice-8c47a19fe0a38c6c9a6e97b7859df7f9b5a8b6fb.tar.bz2 ice-8c47a19fe0a38c6c9a6e97b7859df7f9b5a8b6fb.tar.xz ice-8c47a19fe0a38c6c9a6e97b7859df7f9b5a8b6fb.zip |
encaps fixes
Diffstat (limited to 'cpp/src/Ice/IncomingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/IncomingAsync.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/IncomingAsync.cpp b/cpp/src/Ice/IncomingAsync.cpp index c0499e93fe0..b9d34f7aa1e 100644 --- a/cpp/src/Ice/IncomingAsync.cpp +++ b/cpp/src/Ice/IncomingAsync.cpp @@ -53,7 +53,7 @@ IceInternal::IncomingAsync::__response(bool ok) } } - __finishInvoke(); + __finishInvoke(true); } void @@ -150,7 +150,7 @@ IceInternal::IncomingAsync::__exception(const Exception& exc) } } - __finishInvoke(); + __finishInvoke(false); } void @@ -166,7 +166,7 @@ IceInternal::IncomingAsync::__exception(const std::exception& ex) _os.write(str.str()); } - __finishInvoke(); + __finishInvoke(false); } void @@ -181,7 +181,7 @@ IceInternal::IncomingAsync::__exception() _os.write(reason); } - __finishInvoke(); + __finishInvoke(false); } IceAsync::Ice::AMD_Object_ice_invoke::AMD_Object_ice_invoke(Incoming& in) : |