]> granicus.if.org Git - php/commitdiff
remove TSRMLS_CC, php_stream_path_decode() is a macro
authorAntony Dovgal <tony2001@php.net>
Tue, 3 Oct 2006 23:26:14 +0000 (23:26 +0000)
committerAntony Dovgal <tony2001@php.net>
Tue, 3 Oct 2006 23:26:14 +0000 (23:26 +0000)
ext/standard/streamsfuncs.c

index 808cfc0baada4baf855d79cbc7731916714a73b3..ccc6ea252be404a2200b22ae65b25997eec77fed 100644 (file)
@@ -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");