From: hniksic Date: Sun, 26 Jun 2005 20:29:39 +0000 (-0700) Subject: [svn] Don't explicitly set entry->next to NULL since entry is already zeroed out. X-Git-Tag: v1.13~898 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=fc532c9bee4929faf203dab586d7b75de04baf2f [svn] Don't explicitly set entry->next to NULL since entry is already zeroed out. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4a807784..6f341671 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-06-26 Hrvoje Niksic + + * html-url.c (get_urls_file): Don't explicitly set entry->next to + NULL since entry is already zeroed out. + 2005-06-26 Gisle Vanem * mswindows.h: Define gai_strerror under MinGW. diff --git a/src/html-url.c b/src/html-url.c index 27de1eab..47b52e69 100644 --- a/src/html-url.c +++ b/src/html-url.c @@ -701,7 +701,6 @@ get_urls_file (const char *file) xfree (url_text); entry = xnew0 (struct urlpos); - entry->next = NULL; entry->url = url; if (!head)