1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/json/tests/bug68817.phpt
2020-05-28 15:07:47 -04:00

14 lines
143 B
PHP

--TEST--
Bug #68817 (Null pointer deference)
--FILE--
<?php
var_dump(json_decode('[""]'));
?>
--EXPECT--
array(1) {
[0]=>
string(0) ""
}