32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 6841cd5977c2d35ad75233734c66983a65613fce Mon Sep 17 00:00:00 2001
|
|
From: Karl Williamson <khw@cpan.org>
|
|
Date: Wed, 12 Aug 2020 17:53:52 -0600
|
|
Subject: [PATCH] Fix leak GH #18054
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This was a simple matter of one path failing to free the memory.
|
|
|
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
---
|
|
regcomp.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/regcomp.c b/regcomp.c
|
|
index addf375450..01f297c299 100644
|
|
--- a/regcomp.c
|
|
+++ b/regcomp.c
|
|
@@ -15191,6 +15191,8 @@ S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth)
|
|
FAIL2("panic: loc_correspondence[%d] is 0",
|
|
(int) (s - s_start));
|
|
}
|
|
+ Safefree(locfold_buf);
|
|
+ Safefree(loc_correspondence);
|
|
}
|
|
else {
|
|
upper_fill = s - s0;
|
|
--
|
|
2.25.4
|
|
|