mirror of
https://github.com/php/php-src.git
synced 2025-01-22 03:34:19 +08:00
Added test case for bug #21732
This commit is contained in:
parent
76c93412d3
commit
24ae309037
33
ext/pcre/tests/bug21732.phpt
Normal file
33
ext/pcre/tests/bug21732.phpt
Normal file
@ -0,0 +1,33 @@
|
||||
--TEST--
|
||||
Bug #21732 (preg_replace() segfaults with invalid parameters)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
extension_loaded("pcre") or die("skip pcre extension is not available");
|
||||
?>
|
||||
--INI--
|
||||
error_reporting=0
|
||||
--FILE--
|
||||
<?php
|
||||
class foo {
|
||||
function cb($param) {
|
||||
var_dump($param);
|
||||
return "yes!";
|
||||
}
|
||||
}
|
||||
|
||||
var_dump(preg_replace('', array(), ''));
|
||||
var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde'));
|
||||
?>
|
||||
--EXPECT--
|
||||
bool(false)
|
||||
array(4) {
|
||||
[0]=>
|
||||
string(5) "abcde"
|
||||
[1]=>
|
||||
string(2) "ab"
|
||||
[2]=>
|
||||
string(2) "cd"
|
||||
[3]=>
|
||||
string(1) "e"
|
||||
}
|
||||
string(4) "yes!"
|
Loading…
Reference in New Issue
Block a user