diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-06-24 11:27:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-06-24 11:27:46 -0400 |
commit | 6caf924605fd8c79193605e1618109db51c43967 (patch) | |
tree | 39fceee4ec0173df3bdce52543b013410f785e56 /src/common/compress.c | |
parent | 89d0261eb5abe75e798a120793df5df64a7c770f (diff) | |
download | tor-6caf924605fd8c79193605e1618109db51c43967.tar.gz tor-6caf924605fd8c79193605e1618109db51c43967.zip |
Add an additional log message to try to diagnose #22719
Diffstat (limited to 'src/common/compress.c')
-rw-r--r-- | src/common/compress.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/compress.c b/src/common/compress.c index 7926faaa60..4e19080c0b 100644 --- a/src/common/compress.c +++ b/src/common/compress.c @@ -574,6 +574,10 @@ tor_compress_process(tor_compress_state_t *state, if (BUG((rv == TOR_COMPRESS_OK) && *in_len == in_len_orig && *out_len == out_len_orig)) { + log_warn(LD_GENERAL, + "More info on the bug: *in_len == in_len_orig == %lu, " + "*out_len == out_len_orig == %lu", + (unsigned long)in_len_orig, (unsigned long)out_len_orig); return TOR_COMPRESS_ERROR; } |