summaryrefslogtreecommitdiff
path: root/ext/json/tests/bug68817.phpt
blob: b95081882361499abae6dcc399a822d0ec1640a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug #68817 (Null pointer deference)
--FILE--
<?php

var_dump(json_decode('[""]'));

?>
--EXPECT--
array(1) {
  [0]=>
  string(0) ""
}