mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
15 lines
253 B
PHP
15 lines
253 B
PHP
--TEST--
|
|
Bug #73532 (Null pointer dereference in mb_eregi)
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists('mb_ereg')) die('skip mbregex support not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(mb_eregi("a", "\xf5"));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|