This commit is contained in:
Maxim Dounin 2017-09-13 15:51:52 +03:00
parent 63f5d46f58
commit 559017768e

View File

@ -44,10 +44,11 @@ ngx_parse_http_time(u_char *value, size_t len)
}
}
for (p++; p < end; p++)
for (p++; p < end; p++) {
if (*p != ' ') {
break;
}
}
if (end - p < 18) {
return NGX_ERROR;