Skip to content

Commit ea7f768

Browse files
Fix pcre non-FAST_ZPP build
1 parent 6730037 commit ea7f768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pcre/php_pcre.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,7 @@ static PHP_FUNCTION(preg_split)
15611561
/* Get function parameters and do error checking */
15621562
#ifndef FAST_ZPP
15631563
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "SS|ll", &regex,
1564-
&subject, &subject_len, &limit_val, &flags) == FAILURE) {
1564+
&subject, &limit_val, &flags) == FAILURE) {
15651565
RETURN_FALSE;
15661566
}
15671567
#else

0 commit comments

Comments
 (0)