From 1343bdff8f822245c1cb36e15094f9365e2737e1 Mon Sep 17 00:00:00 2001 From: Philip Hazel Date: Wed, 27 Jul 2022 18:00:40 +0100 Subject: [PATCH] Fix overlooked comment edit --- src/pcre2_match.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcre2_match.c b/src/pcre2_match.c index 93b9d3b..a396060 100644 --- a/src/pcre2_match.c +++ b/src/pcre2_match.c @@ -6828,7 +6828,7 @@ mb->match_limit_depth = (mcontext->depth_limit < re->limit_depth)? large. Set the initial frame vector size to ensure that there are at least 10 available frames, but enforce a minimum of START_FRAMES_SIZE. If this is greater than the heap limit, get as large a vector as possible. Always round -the size to a multiple of the frame size. (The heap limit is in kibibytes.) */ +the size to a multiple of the frame size. */ heapframes_size = frame_size * 10; if (heapframes_size < START_FRAMES_SIZE) heapframes_size = START_FRAMES_SIZE;