]> sjero.net Git - wget/commitdiff
[svn] Don't explicitly set entry->next to NULL since entry is already zeroed out.
authorhniksic <devnull@localhost>
Sun, 26 Jun 2005 20:29:39 +0000 (13:29 -0700)
committerhniksic <devnull@localhost>
Sun, 26 Jun 2005 20:29:39 +0000 (13:29 -0700)
src/ChangeLog
src/html-url.c

index 4a807784343ad52f8cd196deaded2a6ca04e9698..6f3416716902f47a40efc6dc307cf261b788ad59 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * 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  <giva@bgnett.no>
 
        * mswindows.h: Define gai_strerror under MinGW.
index 27de1eabb4f1846f6935dfadaed57ed722686b66..47b52e694ba332800dc41399d45979cea5ec36d8 100644 (file)
@@ -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)