X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fconvert.c;h=abad5db09af50bb528f9c5f102596b6be1a613ba;hp=6cf6f2724d7a1ed89345cf2ee17422d093cb0b22;hb=8624553a31b148f9051cc11725bc01d9760fa07b;hpb=0aa3c5d33c5faa8902fa638c36314deae45460f3 diff --git a/src/convert.c b/src/convert.c index 6cf6f272..abad5db0 100644 --- a/src/convert.c +++ b/src/convert.c @@ -124,6 +124,9 @@ convert_links_in_hashtable (struct hash_table *downloaded_set, set_uri_encoding (pi, opt.locale, true); u = url_parse (cur_url->url->url, NULL, pi, true); + if (!u) + continue; + local_name = hash_table_get (dl_url_file_map, u->url); /* Decide on the conversion type. */ @@ -870,7 +873,7 @@ register_delete_file (const char *file) /* Register that FILE is an HTML file that has been downloaded. */ void -register_html (const char *url, const char *file) +register_html (const char *file) { if (!downloaded_html_set) downloaded_html_set = make_string_hash_table (0); @@ -880,7 +883,7 @@ register_html (const char *url, const char *file) /* Register that FILE is a CSS file that has been downloaded. */ void -register_css (const char *url, const char *file) +register_css (const char *file) { if (!downloaded_css_set) downloaded_css_set = make_string_hash_table (0);