mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
89c3e0346a
The output buffer can be NULL when the number of bytes is zero. Closes GH-14815.
14 lines
278 B
PHP
14 lines
278 B
PHP
--TEST--
|
|
GH-14808 (Unexpected null pointer in Zend/zend_string.h with empty output buffer)
|
|
--FILE--
|
|
<?php
|
|
var_dump($args);
|
|
ob_start('ob_iconv_handler');
|
|
ob_clean();
|
|
var_dump(ob_get_contents());
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $args in %s on line %d
|
|
NULL
|
|
string(0) ""
|