Browse Source

* Add some broken urls to check list, in fact skip only urls without host part and empty urls (thought empty urls are

totally impossible in that code)
rspamd-0.5
Vsevolod Stakhov 17 years ago
parent
commit
4d932e105a
  1. 4
      src/url.c

4
src/url.c

@ -875,7 +875,7 @@ url_parse_text (struct worker_task *task, GByteArray *content)
if (rc != URI_ERRNO_OK) {
msg_info ("url_parse_html: error while parsing url %s: %s", url_str, url_strerror (rc));
}
else {
if (rc != URI_ERRNO_EMPTY && rc != URI_ERRNO_NO_HOST) {
TAILQ_INSERT_TAIL (&task->urls, new, next);
}
}
@ -920,7 +920,7 @@ url_parse_html (struct worker_task *task, GByteArray *content)
if (rc != URI_ERRNO_OK) {
msg_info ("url_parse_html: error while parsing url %s: %s", url_str, url_strerror (rc));
}
else {
if (rc != URI_ERRNO_EMPTY && rc != URI_ERRNO_NO_HOST) {
TAILQ_INSERT_TAIL (&task->urls, new, next);
}
}

Loading…
Cancel
Save