]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
uninitialized pointer
authorwessels <>
Mon, 4 May 1998 23:13:35 +0000 (23:13 +0000)
committerwessels <>
Mon, 4 May 1998 23:13:35 +0000 (23:13 +0000)
src/ftp.cc

index 1f493dce60d0fedd078d9932aaada973a5ea93f9..c413b8c8fcae6a4009e39d63db05f9bbbddfdebb 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ftp.cc,v 1.222 1998/04/25 07:25:41 wessels Exp $
+ * $Id: ftp.cc,v 1.223 1998/05/04 17:13:35 wessels Exp $
  *
  * DEBUG: section 9     File Transfer Protocol (FTP)
  * AUTHOR: Harvest Derived
@@ -1093,7 +1093,7 @@ ftpParseControlReply(char *buf, size_t len, int *codep)
 {
     char *s;
     int complete = 0;
-    wordlist *head;
+    wordlist *head = NULL;
     wordlist *list;
     wordlist **tail = &head;
     off_t offset;