From: Ilia Alshanetsky Date: Mon, 22 Nov 2010 20:17:41 +0000 (+0000) Subject: Fixed double-free when auto-decompressing pages X-Git-Tag: RELEASE_1_7_1~8 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=f1aea1cae28896902181b5bb6f8692db1a63c6e6 Fixed double-free when auto-decompressing pages --- 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));