From: wessels <> Date: Fri, 29 Mar 1996 06:11:20 +0000 (+0000) Subject: init pointers to NULL X-Git-Tag: SQUID_3_0_PRE1~6344 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7780c179269b5a8ff937229ea504bd4cbeefc5e;p=thirdparty%2Fsquid.git init pointers to NULL --- diff --git a/src/http.cc b/src/http.cc index 15160b89d2..d8326e2df7 100644 --- a/src/http.cc +++ b/src/http.cc @@ -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)) &&