From 349082267f9cbef51855612215cdd141d0798faa Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sat, 18 Dec 2010 12:06:58 +0000 Subject: [PATCH] - fix leak introduced by the null poisoning patch --- ext/pspell/pspell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c index 0a291902a1..80441e055b 100644 --- a/ext/pspell/pspell.c +++ b/ext/pspell/pspell.c @@ -403,6 +403,7 @@ static PHP_FUNCTION(pspell_new_personal) #endif if (strlen(personal) != personal_len) { + delete_pspell_config(config); RETURN_FALSE; } -- 2.40.0