xref: /PHP-8.3/tests/output/gh14808.phpt (revision 43e3f577)
1--TEST--
2GH-14808 (Unexpected null pointer in Zend/zend_string.h with empty output buffer)
3--EXTENSIONS--
4iconv
5--FILE--
6<?php
7var_dump($args);
8ob_start('ob_iconv_handler');
9ob_clean();
10var_dump(ob_get_contents());
11?>
12--EXPECTF--
13Warning: Undefined variable $args in %s on line %d
14NULL
15string(0) ""
16