From f8a662f7ea1c5afec710845ea14e97e4191cb7a0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leon=20Wei=C3=9F?= <leon.weiss@rub.de>
Date: Mon, 14 Aug 2023 21:29:24 +0200
Subject: [PATCH] Increase maximum size of clamped jump tables

Necessary for pcre2fuzzcheck
---
 irdb-libs/ir_builders/fill_in_indtargs.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/irdb-libs/ir_builders/fill_in_indtargs.cpp b/irdb-libs/ir_builders/fill_in_indtargs.cpp
index d0cf6414c..5187bbca0 100644
--- a/irdb-libs/ir_builders/fill_in_indtargs.cpp
+++ b/irdb-libs/ir_builders/fill_in_indtargs.cpp
@@ -2675,7 +2675,7 @@ V2:
 		// Thus, this default is sane for most cases, and is only applied when we absolutely
 		// cannot find a bounds check on the table size.
 		//
-		auto table_size = 255U;
+		auto table_size = 512U;
 		auto found_table_size = false;
 		auto I1 = static_cast<Instruction_t *>(nullptr);
 
-- 
GitLab