commit | 1faeb4c71084a20c68ee8d7bc42e337d4d435366 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Fri Jan 29 10:22:28 2021 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri Jan 29 13:16:32 2021 +0100 |
tree | 56a8e9cc4730f8cb75471df749b577b8cc787da0 | |
parent | 5c25daa170713911d7c6be33699caa71fc362da4 [diff] |
MINOR: mux-h1: Remove first useless test on count in h1_process_output() h1_process_output() function is never called with no data to send (count == 0). Thus, the first test on count, at the beginning of the function is useless and may be removed. This way, by reading the code, it is obvious the <chn_htx> variable is always defined. This patch should fix the issue #1085.