From: wessels <> Date: Mon, 25 Nov 1996 13:49:36 +0000 (+0000) Subject: 4k page leak X-Git-Tag: SQUID_3_0_PRE1~5405 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9eec5046bce7dbe09fb58bc4f1cd91d6b21df00;p=thirdparty%2Fsquid.git 4k page leak --- diff --git a/src/http.cc b/src/http.cc index 3278c818e6..7a3b99e5b0 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,5 +1,5 @@ /* - * $Id: http.cc,v 1.114 1996/11/25 02:35:21 wessels Exp $ + * $Id: http.cc,v 1.115 1996/11/25 06:49:36 wessels Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -703,6 +703,9 @@ httpSendRequest(int fd, void *data) strcat(viabuf, ybuf); strcat(buf, viabuf); len += strlen(viabuf); + put_free_4k_page(viabuf); + put_free_4k_page(ybuf); + viabuf = ybuf = NULL; if (!saw_host) { ybuf = get_free_4k_page();