From: wessels <> Date: Sat, 6 May 2006 02:13:04 +0000 (+0000) Subject: bugfix: must reset hdr->mask to 0 after cleaning HttpHeader. X-Git-Tag: SQUID_3_0_PRE4~199 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ead5ed09c36e5e600924fd262de45fd01544c6c0;p=thirdparty%2Fsquid.git bugfix: must reset hdr->mask to 0 after cleaning HttpHeader. --- diff --git a/src/HttpHeader.cc b/src/HttpHeader.cc index f233def5a9..c38cd30cfd 100644 --- a/src/HttpHeader.cc +++ b/src/HttpHeader.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpHeader.cc,v 1.114 2006/05/05 19:57:32 wessels Exp $ + * $Id: HttpHeader.cc,v 1.115 2006/05/05 20:13:04 wessels Exp $ * * DEBUG: section 55 HTTP Header * AUTHOR: Alex Rousskov @@ -408,6 +408,7 @@ httpHeaderClean(HttpHeader * hdr) } hdr->entries.clean(); + httpHeaderMaskInit(&hdr->mask, 0); } /* append entries (also see httpHeaderUpdate) */