From: Maxim Dounin Date: Wed, 13 Sep 2017 12:51:52 +0000 (+0300) Subject: Style. X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=559017768ece4f5328ae0018f337fbe05865c5a8;p=nginx.git Style. --- diff --git a/src/core/ngx_parse_time.c b/src/core/ngx_parse_time.c index a5c503424..232ac91dd 100644 --- a/src/core/ngx_parse_time.c +++ b/src/core/ngx_parse_time.c @@ -44,14 +44,15 @@ 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; - } + } if (fmt != isoc) { if (*p < '0' || *p > '9' || *(p + 1) < '0' || *(p + 1) > '9') {