Fix pcre non-FAST_ZPP build

This commit is contained in:
Andrea Faulds 2014-12-16 12:45:41 +00:00
parent 673003757f
commit ea7f768b2f

View File

@ -1561,7 +1561,7 @@ static PHP_FUNCTION(preg_split)
/* Get function parameters and do error checking */
#ifndef FAST_ZPP
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "SS|ll", &regex,
&subject, &subject_len, &limit_val, &flags) == FAILURE) {
&subject, &limit_val, &flags) == FAILURE) {
RETURN_FALSE;
}
#else