File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 8
8
to complete the set; now possible thanks to bug #66015 being fixed. (Bob)
9
9
. Fixed bug #66568 (Update reflection information for unserialize() function).
10
10
(Ferenc)
11
+ . Fixed bug #66660 (Composer.phar install/update fails). (Ferenc)
11
12
12
13
- mysqlnd:
13
14
. Added a new fetching mode to mysqlnd. (Andrey)
Original file line number Diff line number Diff line change
1
+ --TEST--
2
+ Bug #66660 (Composer.phar install/update fails)
3
+ --STDIN--
4
+ <?php __CLASS__ ?>
5
+ --FILE--
6
+ <?php
7
+ file_put_contents (__DIR__ ."/bug66660.tmp.php " , "<?php __CLASS__ ?> " );
8
+ echo php_strip_whitespace (__DIR__ ."/bug66660.tmp.php " );
9
+ ?>
10
+ --CLEAN--
11
+ <?php unlink (__DIR__ ."/bug66660.tmp.php " ); ?>
12
+ --EXPECT--
13
+ <?php __CLASS__ ?>
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ ZEND_API void zend_strip(TSRMLS_D)
211
211
break ;
212
212
213
213
default :
214
- efree (token .value .str .val );
214
+ STR_FREE (token .value .str .val );
215
215
break ;
216
216
}
217
217
}
You can’t perform that action at this time.
0 commit comments