diff options
| author | Wez Furlong <wez@php.net> | 2002-03-18 18:54:32 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2002-03-18 18:54:32 +0000 |
| commit | c9d5e137380893c2608ebe4aefeb46026d5efcef (patch) | |
| tree | 898f5a7e8894a9fe9f9fdbb0a0fa8080bebbbc72 /ext/standard/http_fopen_wrapper.c | |
| parent | 41c1c084953a6a5024c56df2b79bcb1fad820633 (diff) | |
| download | php-git-c9d5e137380893c2608ebe4aefeb46026d5efcef.tar.gz | |
TSRMLS related work on streams, as discussed with Zeev.
# Should be the last "broad" commit for a while
# Don't forget to make clean ; make
Diffstat (limited to 'ext/standard/http_fopen_wrapper.c')
| -rw-r--r-- | ext/standard/http_fopen_wrapper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index c5e5e3c037..aeaec330a8 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -71,7 +71,7 @@ #define HTTP_HEADER_BLOCK_SIZE 1024 -php_stream *php_stream_url_wrap_http(char *path, char *mode, int options, char **opened_path STREAMS_DC) +php_stream *php_stream_url_wrap_http(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC) { php_stream *stream = NULL; php_url *resource = NULL; @@ -268,7 +268,7 @@ php_stream *php_stream_url_wrap_http(char *path, char *mode, int options, char * else { strlcpy(new_path, location, sizeof(new_path)); } - stream = php_stream_url_wrap_http(new_path, mode, options, opened_path STREAMS_CC); + stream = php_stream_url_wrap_http(new_path, mode, options, opened_path STREAMS_CC TSRMLS_CC); if (stream->wrapperdata) { entryp = &entry; MAKE_STD_ZVAL(entry); |
