diff options
author | Sebastian Bergmann <sebastian@php.net> | 2004-02-25 09:36:46 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2004-02-25 09:36:46 +0000 |
commit | 184b379fd754f68c3b7cac907d29f4d81616516f (patch) | |
tree | 4ab54110302ccf8d0429e5ab124d1d326c8c29b1 | |
parent | 36a751840dc6382ae89498ed132911047d47a01b (diff) | |
download | php-git-184b379fd754f68c3b7cac907d29f4d81616516f.tar.gz |
ZTS fix.
-rw-r--r-- | ext/standard/http_fopen_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index 083b22c1e9..d328311b11 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -355,7 +355,7 @@ php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper, char *path, size_t tmp_line_len; /* get response header */ - if (_php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL) { + if (_php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len TSRMLS_CC) != NULL) { zval *http_response; int response_code; |