mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
BUG/MINOR: mux-fcgi: silence a gcc warning about null dereference
Silence an impossible warning that gcc reports about a NULL dereference.
This commit is contained in:
parent
4c08f12dd8
commit
13ed9faecd
1 changed files with 1 additions and 0 deletions
|
|
@ -3248,6 +3248,7 @@ static size_t fcgi_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t co
|
|||
while (fstrm->state < FCGI_SS_HLOC && !(fconn->flags & FCGI_SF_BLK_ANY) &&
|
||||
count && !htx_is_empty(htx)) {
|
||||
blk = htx_get_head_blk(htx);
|
||||
ALREADY_CHECKED(blk);
|
||||
bsize = htx_get_blksz(blk);
|
||||
|
||||
switch (htx_get_blk_type(blk)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue