From f1aea1cae28896902181b5bb6f8692db1a63c6e6 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Mon, 22 Nov 2010 20:17:41 +0000 Subject: [PATCH] Fixed double-free when auto-decompressing pages --- http_encoding_api.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/http_encoding_api.c b/http_encoding_api.c index 8ce0280..15fb5fd 100644 --- a/http_encoding_api.c +++ b/http_encoding_api.c @@ -347,10 +347,6 @@ retry_raw_inflate: } } inflateEnd(&Z); - - if (decoded_len && *decoded) { - efree(*decoded); - } } http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not inflate data: %s", zError(status)); -- 2.30.2