From b80667d5f3714cf6a136bd9ed42b0fef9618dcb5 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 27 Jan 1999 21:41:08 +0000 Subject: [PATCH] pcre_exec(): Andrew Kuchling's patch for pcre memory leak. --- Modules/pypcre.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/pypcre.c b/Modules/pypcre.c index 9c6939fca14..976eb21fc32 100644 --- a/Modules/pypcre.c +++ b/Modules/pypcre.c @@ -4746,6 +4746,7 @@ if (using_temporary_offsets) printf(">>>> returning %d\n", match_block.errorcode); #endif + free_stack(&match_block); return match_block.errorcode; }