From 3e98dc5edc30214452bc60cb45158e85a6a40073 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Tue, 11 May 1999 00:09:22 +0000 Subject: [PATCH] Memory leak fix --- mod_php3.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mod_php3.c b/mod_php3.c index 85451001b4..333bbc90fa 100644 --- a/mod_php3.c +++ b/mod_php3.c @@ -145,6 +145,8 @@ int sapi_apache_header_handler(sapi_header_struct *sapi_header, sapi_headers_str *p = ':'; /* a well behaved header handler shouldn't change its original arguments */ + efree(sapi_header->header); + return 0; /* don't use the default SAPI mechanism, Apache duplicates this functionality */ } -- 2.40.0