]> sjero.net Git - wget/commitdiff
[svn] No need to initialize NEWEL->next to NULL, it's already NULL.
authorhniksic <devnull@localhost>
Fri, 7 Nov 2003 12:08:05 +0000 (04:08 -0800)
committerhniksic <devnull@localhost>
Fri, 7 Nov 2003 12:08:05 +0000 (04:08 -0800)
src/html-url.c

index 54dbf382f0402845c87e863d5f2ee6ac9e4b1ba9..3dc072592e37fcee912e4506dc76f3f2af202a94 100644 (file)
@@ -329,7 +329,6 @@ append_url (const char *link_uri,
   DEBUGP (("appending \"%s\" to urlpos.\n", url->url));
 
   newel = xnew0 (struct urlpos);
-  newel->next = NULL;
   newel->url = url;
   newel->pos = tag->attrs[attrind].value_raw_beginning - ctx->text;
   newel->size = tag->attrs[attrind].value_raw_size;