diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-01-24 10:07:46 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-01-24 10:07:46 +0100 |
commit | 566ae61db91d991dbaf38d280d285faddddce5a6 (patch) | |
tree | 4c014a63f061e29ee753e74d77bad414df801fd5 /php/src/IcePHP/Operation.cpp | |
parent | minor fixes to doc files (diff) | |
download | ice-566ae61db91d991dbaf38d280d285faddddce5a6.tar.bz2 ice-566ae61db91d991dbaf38d280d285faddddce5a6.tar.xz ice-566ae61db91d991dbaf38d280d285faddddce5a6.zip |
More fixes for ICE-4841 - changed createInputStream with bool parameter to wrapInputStream
Diffstat (limited to 'php/src/IcePHP/Operation.cpp')
-rw-r--r-- | php/src/IcePHP/Operation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/php/src/IcePHP/Operation.cpp b/php/src/IcePHP/Operation.cpp index bfeaeff4075..412de85e9b5 100644 --- a/php/src/IcePHP/Operation.cpp +++ b/php/src/IcePHP/Operation.cpp @@ -560,7 +560,7 @@ void IcePHP::TypedInvocation::unmarshalResults(int argc, zval** args, zval* ret, const pair<const Ice::Byte*, const Ice::Byte*>& bytes TSRMLS_DC) { - Ice::InputStreamPtr is = Ice::createInputStream(_communicator->getCommunicator(), bytes, false); + Ice::InputStreamPtr is = Ice::wrapInputStream(_communicator->getCommunicator(), bytes); // // Store a pointer to a local SlicedDataUtil object as the stream's closure. @@ -667,7 +667,7 @@ IcePHP::TypedInvocation::unmarshalResults(int argc, zval** args, zval* ret, zval* IcePHP::TypedInvocation::unmarshalException(const pair<const Ice::Byte*, const Ice::Byte*>& bytes TSRMLS_DC) { - Ice::InputStreamPtr is = Ice::createInputStream(_communicator->getCommunicator(), bytes, false); + Ice::InputStreamPtr is = Ice::wrapInputStream(_communicator->getCommunicator(), bytes); // // Store a pointer to a local SlicedDataUtil object as the stream's closure. |