Remove a redundant conditional in tor_zstd_compress_process

Part of #22502
This commit is contained in:
teor 2017-06-16 09:46:46 +10:00
parent 7605bd528e
commit 617e1da636
No known key found for this signature in database
GPG Key ID: 740D9E39025272A2

View File

@ -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;