55ca890a27
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/pcre2.git#9038664a6979ee430a2c03d2e595e98a320f05c8
30 lines
814 B
Diff
30 lines
814 B
Diff
From 29dd457d21ec0350bd9d55f33c0e53ca285d52c2 Mon Sep 17 00:00:00 2001
|
|
From: zherczeg <zherczeg@6239d852-aaf2-0410-a92c-79f79f948069>
|
|
Date: Fri, 19 Feb 2021 09:20:37 +0000
|
|
Subject: [PATCH] Restore single character repetition optimization in JIT.
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1302 6239d852-aaf2-0410-a92c-79f79f948069
|
|
Petr Písař: Ported to 10.36.
|
|
---
|
|
src/pcre2_jit_compile.c | 2 +-
|
|
|
|
diff --git a/src/pcre2_jit_compile.c b/src/pcre2_jit_compile.c
|
|
index 1977d28..3281464 100644
|
|
--- a/src/pcre2_jit_compile.c
|
|
+++ b/src/pcre2_jit_compile.c
|
|
@@ -1226,7 +1226,7 @@ while (cc < ccend)
|
|
return TRUE;
|
|
}
|
|
|
|
-#define EARLY_FAIL_ENHANCE_MAX (1 + 1)
|
|
+#define EARLY_FAIL_ENHANCE_MAX (1 + 3)
|
|
|
|
/*
|
|
start:
|
|
--
|
|
2.26.2
|
|
|