When we're using HTX, we don't have to generate chunk header/trailers, and
that ultimately leads to a crash when we try to access a buffer that
contains just chunk trailers.
This should not be backported.
/* a payload is present */
if (msgf & H2_MSGF_BODY_CL)
h2s->flags |= H2_SF_DATA_CLEN;
- else if (!(msgf & H2_MSGF_BODY_TUNNEL))
+ else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx)
h2s->flags |= H2_SF_DATA_CHNK;
}