mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
17 lines
381 B
PHP
17 lines
381 B
PHP
--TEST--
|
|
Bug #39304 (Segmentation fault with list unpacking of string offset)
|
|
--FILE--
|
|
<?php
|
|
$s = "";
|
|
list($a, $b) = $s[0];
|
|
echo "I am alive";
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Uninitialized string offset: 0 in %sbug39304.php on line %d
|
|
|
|
Notice: Uninitialized string offset: 1 in %sbug39304.php on line %d
|
|
|
|
Notice: Uninitialized string offset: 0 in %sbug39304.php on line %d
|
|
I am alive
|
|
|