Fix style of array index is used before limits check

Bug: https://sourceforge.net/p/w3m/feature-requests/25/
This commit is contained in:
Tatsuya Kinoshita
2016-03-29 00:14:47 +09:00
parent 96b17f987e
commit 686a824dd4

2
url.c
View File

@@ -2080,7 +2080,7 @@ filename_extension(char *path, int is_url)
break;
}
if (*last_dot == '.') {
for (i = 1; last_dot[i] && i < 8; i++) {
for (i = 1; i < 8 && last_dot[i]; i++) {
if (is_url && !IS_ALNUM(last_dot[i]))
break;
}