diff options
Diffstat (limited to 'e-util/e-html-utils.c')
-rw-r--r-- | e-util/e-html-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index e63b233676..41a5a25d3b 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -55,7 +55,7 @@ url_extract (const unsigned char **text, gboolean check) if (check) { /* Make sure we weren't fooled. */ p = memchr (*text, ':', end - *text); - if (!p || end - p < 3) + if (!p || end - p < 4) return NULL; } |