From a99e3ec1b3dfb9bd4872abe714f60dd6cdf03544 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 3 Oct 2006 23:26:14 +0000 Subject: [PATCH] remove TSRMLS_CC, php_stream_path_decode() is a macro --- ext/standard/streamsfuncs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.50.1