diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-31 07:09:49 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-31 07:09:49 +0000 |
commit | b1de7fc900766b229f17bf9e1020b5a67b5b0964 (patch) | |
tree | c405a417de3fdafcd98ad8db882b770e96e70d90 /ext/zlib/zlib_fopen_wrapper.c | |
parent | bc42c37513a730b0b3ff9cf29e14e45e4ec50c71 (diff) | |
download | php-git-b1de7fc900766b229f17bf9e1020b5a67b5b0964.tar.gz |
More TSRMLS_FETCH annihilation. Enough for today...
Diffstat (limited to 'ext/zlib/zlib_fopen_wrapper.c')
-rw-r--r-- | ext/zlib/zlib_fopen_wrapper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zlib/zlib_fopen_wrapper.c b/ext/zlib/zlib_fopen_wrapper.c index ad87ba705f..f9328025eb 100644 --- a/ext/zlib/zlib_fopen_wrapper.c +++ b/ext/zlib/zlib_fopen_wrapper.c @@ -59,7 +59,7 @@ static COOKIE_IO_FUNCTIONS_T gz_cookie_functions = , gz_closer }; -FILE *zlib_fopen_wrapper(char *path, char *mode, int options, int *issock, int *socketd, char **opened_path) +FILE *zlib_fopen_wrapper(char *path, char *mode, int options, int *issock, int *socketd, char **opened_path TSRMLS_DC) { struct gz_cookie *gc = NULL; FILE *fp; @@ -75,7 +75,7 @@ FILE *zlib_fopen_wrapper(char *path, char *mode, int options, int *issock, int * path++; - fp = php_fopen_wrapper(path, mode, options|IGNORE_URL, &fissock, &fsocketd, NULL); + fp = php_fopen_wrapper(path, mode, options|IGNORE_URL, &fissock, &fsocketd, NULL TSRMLS_CC); if (!fp) { free(gc); |