summaryrefslogtreecommitdiff
path: root/ext/pcre
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-09-01 12:51:48 -0700
committerStanislav Malyshev <stas@php.net>2015-09-01 12:51:48 -0700
commita6c063d663182647b522d5e36ca537e4ed699c60 (patch)
treedc1ddf3c8d0a83bfd143fffe5cb63a430ae78830 /ext/pcre
parent3fe509443ccaebd5626f18490f36f088cde16d3f (diff)
parent43c2dfa7b3c0e42ddd8f181200ea34bdb7b8cfd0 (diff)
downloadphp-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.c2
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--;
}