mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
14 lines
237 B
PHP
14 lines
237 B
PHP
--TEST--
|
|
Bug #71220 (Null pointer deref (segfault) in compact via ob_start)
|
|
--FILE--
|
|
<?php
|
|
ob_start("compact");
|
|
try {
|
|
ob_end_clean();
|
|
} catch (\Error $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Cannot call compact() dynamically
|