From 566ae61db91d991dbaf38d280d285faddddce5a6 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Thu, 24 Jan 2013 10:07:46 +0100 Subject: More fixes for ICE-4841 - changed createInputStream with bool parameter to wrapInputStream --- py/modules/IcePy/Operation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'py/modules/IcePy/Operation.cpp') diff --git a/py/modules/IcePy/Operation.cpp b/py/modules/IcePy/Operation.cpp index b575cce2626..b30d70c0e5f 100644 --- a/py/modules/IcePy/Operation.cpp +++ b/py/modules/IcePy/Operation.cpp @@ -1602,7 +1602,7 @@ IcePy::TypedInvocation::unmarshalResults(const pair 0) { - Ice::InputStreamPtr is = Ice::createInputStream(_communicator, bytes, false); + Ice::InputStreamPtr is = Ice::wrapInputStream(_communicator, bytes); // // Store a pointer to a local SlicedDataUtil object as the stream's closure. @@ -1676,7 +1676,7 @@ IcePy::TypedInvocation::unmarshalResults(const pair& bytes) { - Ice::InputStreamPtr is = Ice::createInputStream(_communicator, bytes, false); + Ice::InputStreamPtr is = Ice::wrapInputStream(_communicator, bytes); // // Store a pointer to a local SlicedDataUtil object as the stream's closure. @@ -3227,7 +3227,7 @@ IcePy::TypedUpcall::dispatch(PyObject* servant, const pairinParams.empty()) { - Ice::InputStreamPtr is = Ice::createInputStream(_communicator, inBytes, false); + Ice::InputStreamPtr is = Ice::wrapInputStream(_communicator, inBytes); // // Store a pointer to a local SlicedDataUtil object as the stream's closure. -- cgit v1.2.3