commit | 3d752a8f97f391b8e6f97c3301442b3ebda38c72 | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Fri Feb 19 15:37:38 2021 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Feb 19 16:35:13 2021 +0100 |
tree | 1f3f4533a6263358af4a9017e9452dd0ce38c6f1 | |
parent | 66161326fd120652557d419810b1323405d7859d [diff] |
MINOR: mux_h2: do not try to remove front conn from idle trees In h2_process there was two parts where the connection was removed from the idle trees, without first checking if the connection is a backend side. This should not produce a crash as the node is properly zeroed on conn_init. However, it is better to explicit the test as it is done on all other places. Besides it will be mandatory if the node part is dynamically allocated only for backend connections.