diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2017-04-27 16:57:18 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2017-04-27 16:57:18 +0300 |
commit | 8449f750e62cd229026e9df3bd023ec7e073a7d4 (patch) | |
tree | 16bf5286016590ce10ee8d53ee65c149f266c8ee /src/http/ngx_http_parse.c | |
parent | 8ae2bc932013b838b925cdbb0cae59f743e699c7 (diff) | |
download | nginx-8449f750e62cd229026e9df3bd023ec7e073a7d4.tar.gz nginx-8449f750e62cd229026e9df3bd023ec7e073a7d4.zip |
Added missing "fall through" comments (ticket #1259).
Found by gcc7 (-Wimplicit-fallthrough).
Diffstat (limited to 'src/http/ngx_http_parse.c')
-rw-r--r-- | src/http/ngx_http_parse.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index 36220fdc1..e8e51563f 100644 --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c @@ -1396,6 +1396,7 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes) goto done; case '+': r->plus_in_uri = 1; + /* fall through */ default: state = sw_usual; *u++ = ch; @@ -1437,6 +1438,7 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes) goto done; case '+': r->plus_in_uri = 1; + /* fall through */ default: state = sw_usual; *u++ = ch; @@ -1484,6 +1486,7 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes) goto done; case '+': r->plus_in_uri = 1; + /* fall through */ default: state = sw_usual; *u++ = ch; |