commit | 779aa693d953d2bcf7f9abaa80f1fac90e4388b9 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Nov 14 07:32:50 2022 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Nov 14 11:14:02 2022 +0100 |
tree | 8bdde67c3042794f33a6f22034ea288bdcb13a2a | |
parent | c5bc4ad24de9251759813175c531665853ea0337 [diff] |
BUILD: h1_htx: use __fallthrough in h1_parse_chunk() This avoids one build warning when preprocessing happens before compiling with gcc >= 7.
diff --git a/src/h1_htx.c b/src/h1_htx.c index a4048c0..75f9dca 100644 --- a/src/h1_htx.c +++ b/src/h1_htx.c
@@ -520,7 +520,7 @@ break; h1m->state = H1_MSG_CHUNK_CRLF; - /*fall through */ + __fallthrough; case H1_MSG_CHUNK_CRLF: ret = h1_skip_chunk_crlf(srcbuf, ofs, b_data(srcbuf));