Patch zlib_inner_open for Zlib related Bug #52926
Patch version 2010-09-26 19:49 UTC
Return to Bug #52926 |
Download this patch
Patch Revisions:
Developer: cataphract@php.net
Index: zlib_fopen_wrapper.c
===================================================================
--- zlib_fopen_wrapper.c (revision 303758)
+++ zlib_fopen_wrapper.c (working copy)
@@ -128,7 +128,7 @@
path += 5;
}
- innerstream = php_stream_open_wrapper(path, mode, STREAM_MUST_SEEK | options | STREAM_WILL_CAST, opened_path);
+ innerstream = php_stream_open_wrapper_ex(path, mode, STREAM_MUST_SEEK | options | STREAM_WILL_CAST, opened_path, context);
if (innerstream) {
int fd;
|