From: hniksic Date: Sun, 11 Feb 2001 17:27:37 +0000 (-0800) Subject: [svn] ChangeLog tweak; initialize con to appease the access checker. X-Git-Tag: v1.13~2275 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=164ccc9e4143c6222e984a0f7a37a95e3901b3e8 [svn] ChangeLog tweak; initialize con to appease the access checker. --- diff --git a/src/ChangeLog b/src/ChangeLog index 3178b8ae..963a663e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,10 +1,14 @@ +2001-02-11 Hrvoje Niksic + + * ftp.c (ftp_loop): Reset con. + 2001-01-06 Jan Prikryl * url.c (parse_uname): Added support for passwords containing '@' characters. (skip_uname): Ditto. -2001-02-11 Hack Kampbj-Aørn -B +2001-02-11 Hack Kampbjørn * url.c (parseurl): Debug-print u->ftp_type. @@ -28,6 +32,7 @@ * retr.c (show_progress): Print the download rate along with the percentages. + Along with Anders Thorsby . 2001-02-10 Tim Mooney diff --git a/src/ftp.c b/src/ftp.c index e85cc4be..767424fb 100644 --- a/src/ftp.c +++ b/src/ftp.c @@ -1567,6 +1567,8 @@ ftp_loop (struct urlinfo *u, int *dt) *dt = 0; + memset (&con, 0, sizeof (con)); + rbuf_uninitialize (&con.rbuf); con.st = ON_YOUR_OWN; res = RETROK; /* in case it's not used */