From: Antony Dovgal Date: Tue, 3 Oct 2006 23:26:14 +0000 (+0000) Subject: remove TSRMLS_CC, php_stream_path_decode() is a macro X-Git-Tag: RELEASE_1_0_0RC1~1437 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a99e3ec1b3dfb9bd4872abe714f60dd6cdf03544;p=php remove TSRMLS_CC, php_stream_path_decode() is a macro --- diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index 808cfc0baa..ccc6ea252b 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -538,7 +538,7 @@ PHP_FUNCTION(stream_get_meta_data) UChar *decoded_path = NULL; int decoded_path_len = 0; - if (SUCCESS == php_stream_path_decode(stream->wrapper, &decoded_path, &decoded_path_len, stream->orig_path, strlen(stream->orig_path), REPORT_ERRORS, stream->context TSRMLS_CC)) { + if (SUCCESS == php_stream_path_decode(stream->wrapper, &decoded_path, &decoded_path_len, stream->orig_path, strlen(stream->orig_path), REPORT_ERRORS, stream->context)) { add_ascii_assoc_unicodel(return_value, "uri", decoded_path, decoded_path_len, 0); } else { add_ascii_assoc_null(return_value, "uri");