commit | 9666720c83ab2b5a6a4214cb0a61c9250b564626 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Mon Dec 17 12:02:57 2018 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Dec 17 13:46:38 2018 +0100 |
tree | bc0144f5cff62bb5b5b735644f2b6f45b265e9cb | |
parent | 2a7d6502bfe8a9357064c1669d5c1739171c84a4 [diff] |
BUG/MEDIUM: compression: Use the right buffer pointers to compress input data A bug was introduced when the buffers API was refactored. It was when wrapping input data were compressed. the pointer b_peek(in, 0) was used instead of "b_orig(in)". b_peek(in, 0) is in fact the same as b_head(in).