summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Object.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-11-26 17:27:16 +0000
committerMarc Laukien <marc@zeroc.com>2001-11-26 17:27:16 +0000
commit8dae3ff3542e3db7e1bf148b765b5c98d564455f (patch)
tree7af8f9fe8fb4addc9ef121d879c8598db0069063 /cpp/src/Ice/Object.cpp
parentBackout change. (diff)
downloadice-8dae3ff3542e3db7e1bf148b765b5c98d564455f.tar.bz2
ice-8dae3ff3542e3db7e1bf148b765b5c98d564455f.tar.xz
ice-8dae3ff3542e3db7e1bf148b765b5c98d564455f.zip
fixed batch requests
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r--cpp/src/Ice/Object.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp
index 2179b78bb8a..8fe66e03a3c 100644
--- a/cpp/src/Ice/Object.cpp
+++ b/cpp/src/Ice/Object.cpp
@@ -248,7 +248,8 @@ DispatchStatus
Ice::Blobject::__dispatch(Incoming& in, const string& identity, const string& facet, const string& operation)
{
vector<Byte> blob;
- in.is()->read(blob);
+ Int sz = in.is()->getReadEncapsSize();
+ in.is()->readBlob(blob, sz);
ice_invokeIn(identity, facet, operation, blob);
return ::IceInternal::DispatchOK;
}