From: Wez Furlong Date: Sun, 18 May 2003 23:05:38 +0000 (+0000) Subject: Fix build X-Git-Tag: RELEASE_1_0_2~755 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ab6c816d9c7df80c502d91d48610eb236d62b7e;p=php Fix build --- diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index 7d0151ca8f..ae3a7c73ba 100644 --- a/ext/wddx/wddx.c +++ b/ext/wddx/wddx.c @@ -1281,7 +1281,7 @@ PHP_FUNCTION(wddx_deserialize) else if (Z_TYPE_P(packet) == IS_RESOURCE) { stream = php_stream_from_zval(stream, &packet); if (stream) { - payload_len = php_stream_copy_to_mem(stream, &payload, PHP_STREAM_COPY_ALL, 0 TSRMLS_CC); + payload_len = php_stream_copy_to_mem(stream, &payload, PHP_STREAM_COPY_ALL); } } else { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Expecting parameter 1 to be a string or a stream");