diff options
author | Stanislav Malyshev <stas@php.net> | 2015-09-01 12:51:48 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-09-01 12:51:48 -0700 |
commit | a6c063d663182647b522d5e36ca537e4ed699c60 (patch) | |
tree | dc1ddf3c8d0a83bfd143fffe5cb63a430ae78830 /ext/pcre | |
parent | 3fe509443ccaebd5626f18490f36f088cde16d3f (diff) | |
parent | 43c2dfa7b3c0e42ddd8f181200ea34bdb7b8cfd0 (diff) | |
download | php-git-a6c063d663182647b522d5e36ca537e4ed699c60.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
More fixes for bug #70219
Diffstat (limited to 'ext/pcre')
-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 36d913d4df..554693d175 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -577,7 +577,7 @@ static void php_do_pcre_match(INTERNAL_FUNCTION_PARAMETERS, int global) /* {{{ * } pce->refcount++; - php_pcre_match_impl(pce, subject, subject_len, return_value, subpats, + php_pcre_match_impl(pce, subject, subject_len, return_value, subpats, global, ZEND_NUM_ARGS() >= 4, flags, start_offset TSRMLS_CC); pce->refcount--; } |