mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
14 lines
262 B
PHP
14 lines
262 B
PHP
--TEST--
|
|
Bug #73646 (mb_ereg_search_init null pointer dereference)
|
|
--SKIPIF--
|
|
<?php
|
|
require 'skipif.inc';
|
|
if (!function_exists('mb_ereg')) die('skip mbregex support not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(mb_ereg_search_init(NULL));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|