diff options
author | Xinchen Hui <laruence@php.net> | 2014-12-17 11:52:19 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-12-17 11:52:19 +0800 |
commit | cfc8b57342542ab31795cf880ab638b9ca9bacff (patch) | |
tree | a33f4a6d8ce11e543bb1c3e6cd98617d0d873426 /ext/pcre/php_pcre.c | |
parent | 3753e6d978bf94f5cad39c0f9d03f237866cac05 (diff) | |
parent | 8b0deb8cd2d54fb9f786a87feb95ee2a00771f6f (diff) | |
download | php-git-cfc8b57342542ab31795cf880ab638b9ca9bacff.tar.gz |
Merge branch 'master' of https://git.php.net/repository/php-src
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 |