commit | 7519560767dcca3794d9559ca355b7ebda829ab6 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Mar 11 15:48:55 2014 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Mar 14 19:26:20 2014 +0100 |
tree | 65db24577d3d253089f8fb8266eb125517e84521 | |
parent | 80a92c02f478dc1b836e0c97c891875437fc54da [diff] |
MINOR: http: release compression context only in http_end_txn() Currently there are two places where the compression context is released, one in session_free() and another one in http_end_txn_clean_session(). Both of them call http_end_txn(), either directly or via http_reset_txn(), and this function is made for this exact purpose. So let's centralize the call there instead.