18 lines
357 B
PHP
18 lines
357 B
PHP
--TEST--
|
|
GH-17399 (iconv_substr() leak on bailout)
|
|
--EXTENSIONS--
|
|
iconv
|
|
--INI--
|
|
memory_limit=2M
|
|
--SKIPIF--
|
|
<?php
|
|
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$str = str_repeat('a', 1024 * 1024);
|
|
iconv_substr($str, 0, 1024 * 1024, 'UTF-8');
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Allowed memory size of %d bytes exhausted %s in %s on line %d
|