Skip to content

Commit e4a8eb8

Browse files
authored
fix: keep context in filtered streams
1 parent 28080dc commit e4a8eb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/php_fopen_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ static php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, const c
352352
return NULL;
353353
}
354354

355-
if (!(stream = php_stream_open_wrapper(p + 10, mode, options, opened_path))) {
355+
if (!(stream = php_stream_open_wrapper(p + 10, mode, options, opened_path, context))) {
356356
efree(pathdup);
357357
return NULL;
358358
}

0 commit comments

Comments
 (0)