]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
init pointers to NULL
authorwessels <>
Fri, 29 Mar 1996 06:11:20 +0000 (06:11 +0000)
committerwessels <>
Fri, 29 Mar 1996 06:11:20 +0000 (06:11 +0000)
src/http.cc

index 15160b89d2930abeb39360ee7d2f2f54677a91d8..d8326e2df72398bb9f383a14dbda90850d4a6f28 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: http.cc,v 1.12 1996/03/28 20:42:48 wessels Exp $ */
+/* $Id: http.cc,v 1.13 1996/03/28 23:11:20 wessels Exp $ */
 
 #include "squid.h"
 
@@ -58,7 +58,7 @@ int httpCachable(url, type, mime_hdr)
      char *type;
      char *mime_hdr;
 {
-    stoplist *p;
+    stoplist *p = NULL;
 
     /* GET and HEAD are cachable. Others are not. */
     if (((strncasecmp(type, "GET", 3) != 0)) &&