We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424c265 commit a247138Copy full SHA for a247138
NEWS
@@ -6,6 +6,9 @@ PHP NEWS
6
. Fixed bug #81433 (DOMElement::setIdAttribute() called twice may remove ID).
7
(Viktor Volkov)
8
9
+- PCRE:
10
+ . Fixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb)
11
+
12
23 Dep 2021, PHP 7.4.24
13
14
- Core:
ext/pcre/pcre2lib/pcre2_jit_compile.c
@@ -11152,7 +11152,7 @@ early_fail_type = (early_fail_ptr & 0x7);
11152
early_fail_ptr >>= 3;
11153
11154
/* During recursion, these optimizations are disabled. */
11155
-if (common->early_fail_start_ptr == 0)
+if (common->early_fail_start_ptr == 0 && common->fast_forward_bc_ptr == NULL)
11156
{
11157
early_fail_ptr = 0;
11158
early_fail_type = type_skip;
0 commit comments