Merge pull request #479 from RichardHitt/urlgrab

Strip all \r and \n, not just a single \r.
This commit is contained in:
RichardHitt 2013-03-29 13:16:32 -07:00
commit f317076cb2
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ url_check_line (char *buf, int len)
int start, end;
g_match_info_fetch_pos(gmi, 0, &start, &end);
if (po[end - 1] == '\r')
while (end > start && (po[end - 1] == '\r' || po[end - 1] == '\n'))
po[--end] = 0;
if (g_strstr_len (po + start, end - start, "://"))
url_add(po + start, end - start);