From 282355efd5d53ba180d30794737c33898031104e Mon Sep 17 00:00:00 2001 From: Dharman Date: Mon, 15 Mar 2021 12:21:44 +0000 Subject: Fix bug #80866 Closes GH-6774. --- ext/pcre/php_pcre.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/pcre/php_pcre.c') diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 39896bb07b..19b1069978 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -2644,6 +2644,10 @@ matched: the match again at the same point. If this fails (picked up above) we advance to the next character. */ if (start_offset == offsets[0]) { + /* Get next piece if no limit or limit not yet reached and something matched*/ + if (limit_val != -1 && limit_val <= 1) { + break; + } count = pcre2_match(pce->re, (PCRE2_SPTR)subject, ZSTR_LEN(subject_str), start_offset, PCRE2_NO_UTF_CHECK | PCRE2_NOTEMPTY_ATSTART | PCRE2_ANCHORED, match_data, mctx); if (count >= 0) { -- cgit v1.2.1