tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 617e1da63655a90dba499e8fe11263d3331aacf7
parent 7605bd528e64898d8d62fd89f414185f465d9999
Author: teor <teor2345@gmail.com>
Date:   Fri, 16 Jun 2017 09:46:46 +1000

Remove a redundant conditional in tor_zstd_compress_process

Part of #22502

Diffstat:
Msrc/common/compress_zstd.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/compress_zstd.c b/src/common/compress_zstd.c @@ -321,7 +321,7 @@ tor_zstd_compress_process(tor_zstd_compress_state_t *state, if (!finish) { // We're not done with the input, so no need to flush. return TOR_COMPRESS_OK; - } else if (state->compress && finish) { + } else if (state->compress) { retval = ZSTD_endStream(state->u.compress_stream, &output); *out = (char *)output.dst + output.pos;