diff options
author | Andrea Faulds <ajf@ajf.me> | 2014-12-16 12:45:41 +0000 |
---|---|---|
committer | Andrea Faulds <ajf@ajf.me> | 2014-12-16 12:45:41 +0000 |
commit | ea7f768b2fc49f877b29db88c52506b7e6d41007 (patch) | |
tree | e1df610009d8c643705ced8f6a8c699155292199 /ext/pcre/php_pcre.c | |
parent | 673003757f5c82eb79bdabb913069f1b7b2ad982 (diff) | |
download | php-git-ea7f768b2fc49f877b29db88c52506b7e6d41007.tar.gz |
Fix pcre non-FAST_ZPP build
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 6f9f2aebbf..eb3b75abd2 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -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", ®ex, - &subject, &subject_len, &limit_val, &flags) == FAILURE) { + &subject, &limit_val, &flags) == FAILURE) { RETURN_FALSE; } #else |