]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
bugfix: must reset hdr->mask to 0 after cleaning HttpHeader.
authorwessels <>
Sat, 6 May 2006 02:13:04 +0000 (02:13 +0000)
committerwessels <>
Sat, 6 May 2006 02:13:04 +0000 (02:13 +0000)
src/HttpHeader.cc

index f233def5a94b2b47345a095fb740cdb25612b523..c38cd30cfd4800e1d804328edb4727139aa45bde 100644 (file)
@@ -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) */