commit | 1b13bfd646e00ccfafd4727febb2589366733064 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Aug 21 18:33:20 2018 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue Aug 21 18:33:20 2018 +0200 |
tree | 331204bbe3d8a5b0e7351070c1653c65a608b177 | |
parent | deca26c452cdc3ab2a4446eaadd5606192306764 [diff] |
BUG/MEDIUM: connection: don't forget to always delete the list's head During a test it happened that a connection was deleted before the stream it's attached to, resulting in a crash related to the fix 18a85fe ("BUG/MEDIUM: streams: Don't forget to remove the si from the wait list.") during the LIST_DEL(). Make sure to always delete the list's head in this case so that other elements can safely detach later. This is purely 1.9, no backport is needed.