From: wessels <> Date: Mon, 4 May 1998 23:13:35 +0000 (+0000) Subject: uninitialized pointer X-Git-Tag: SQUID_3_0_PRE1~3391 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51eeadc6cf59fff2d1dc827e1fe97d8405338c42;p=thirdparty%2Fsquid.git uninitialized pointer --- diff --git a/src/ftp.cc b/src/ftp.cc index 1f493dce60..c413b8c8fc 100644 --- a/src/ftp.cc +++ b/src/ftp.cc @@ -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;