]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUILD: htx: use the unchecked version of htx_get_head_blk() where needed
authorWilly Tarreau <w@1wt.eu>
Mon, 30 May 2022 14:27:48 +0000 (16:27 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 30 May 2022 14:27:48 +0000 (16:27 +0200)
commitd46b5b94f09ffbb442bb29dbbfb4122e490df728
tree15d794294b1af535b7d5b740af6a172e086bc280
parent771483da3e60545a4d2da02ea843774822f1d315
BUILD: htx: use the unchecked version of htx_get_head_blk() where needed

stream.c and mux_fcgi.c may cause a warning for a possible NULL deref
at -Os, while that is not possible thanks to the previous test. Let's
just switch to __htx_get_head_blk() instead.
src/mux_fcgi.c
src/stream.c