summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug75457.phpt
blob: ee5ab162f8a6c4e0555dc75e4aff9ad63857f268 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #75457 (heap-use-after-free in php7.0.25)
--FILE--
<?php
$pattern = "/(((?(?C)0?=))(?!()0|.(?0)0)())/";
var_dump(preg_match($pattern, "hello"));
?>
--EXPECTF--
Warning: preg_match(): Compilation failed: assertion expected after (?( or (?(?C) at offset 8 in %sbug75457.php on line %d
bool(false)