From: hno <> Date: Thu, 14 Feb 2002 07:59:50 +0000 (+0000) Subject: Fix a memory leak when logging the authenticated username X-Git-Tag: SQUID_3_0_PRE1~1185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b31ff3d7477f3475234d79058ee5144a20e7e4e0;p=thirdparty%2Fsquid.git Fix a memory leak when logging the authenticated username --- diff --git a/src/client_side.cc b/src/client_side.cc index ba5721dfef..83e48adb08 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.562 2002/02/13 19:34:01 hno Exp $ + * $Id: client_side.cc,v 1.563 2002/02/14 00:59:50 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -817,6 +817,7 @@ httpRequestFree(void *data) safe_free(http->log_uri); safe_free(http->al.headers.request); safe_free(http->al.headers.reply); + safe_free(http->al.cache.authuser); safe_free(http->redirect.location); stringClean(&http->range_iter.boundary); if ((e = http->entry)) {