mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
13 lines
243 B
PHP
13 lines
243 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
|
|
I am alive
|
|
|