File tree 2 files changed +2
-0
lines changed 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ PHP 4 NEWS
23
23
- Fixed bug #32932 (Oracle LDAP: ldap_get_entries invalid pointer). (Jani)
24
24
- Fixed bug #32904 (pg_get_notify() ignores result_type parameter). (Tony)
25
25
- Fixed bug #32813 (parse_url() does not handle scheme-only urls properly). (Ilia)
26
+ - Fixed bug #32810 (temporary files not using plain file wrapper). (Ilia)
26
27
- Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia)
27
28
- Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani)
28
29
- Fixed bug #32773 (GMP functions break when second parameter is 0). (Stas)
Original file line number Diff line number Diff line change @@ -1371,6 +1371,7 @@ PHPAPI php_stream *_php_stream_fopen_tmpfile(int dummy STREAMS_DC TSRMLS_DC)
1371
1371
if (fd != -1 ) {
1372
1372
php_stream * stream = php_stream_fopen_from_fd_rel (fd , "r+b" , NULL );
1373
1373
if (stream ) {
1374
+ stream -> wrapper = & php_plain_files_wrapper ;
1374
1375
php_stdio_stream_data * self = (php_stdio_stream_data * )stream -> abstract ;
1375
1376
1376
1377
self -> temp_file_name = opened_path ;
You can’t perform that action at this time.
0 commit comments