diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-09-12 09:22:50 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-09-12 09:22:50 -0400 |
commit | bac160b4e079398d82a6dda13111fc1f3407d837 (patch) | |
tree | 18cfb441d40c0bf3600a384453ac3e6a965b6d6d /src | |
parent | 6cd5a80275614105ccf8794465b6ba5c0c5e8f3f (diff) | |
download | tor-bac160b4e079398d82a6dda13111fc1f3407d837.tar.gz tor-bac160b4e079398d82a6dda13111fc1f3407d837.zip |
One more implicit fallthrough warning to fix on GCC 7
Diffstat (limited to 'src')
-rw-r--r-- | src/common/torgzip.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/torgzip.c b/src/common/torgzip.c index 3353f0ef61..c44399aa74 100644 --- a/src/common/torgzip.c +++ b/src/common/torgzip.c @@ -181,6 +181,7 @@ tor_gzip_compress(char **out, size_t *out_len, /* In case zlib doesn't work as I think .... */ if (stream->avail_out >= stream->avail_in+16) break; + /* Falls through. */ case Z_BUF_ERROR: offset = stream->next_out - ((unsigned char*)*out); old_size = out_size; @@ -319,6 +320,7 @@ tor_gzip_uncompress(char **out, size_t *out_len, /* In case zlib doesn't work as I think.... */ if (stream->avail_out >= stream->avail_in+16) break; + /* Falls through. */ case Z_BUF_ERROR: if (stream->avail_out > 0) { log_fn(protocol_warn_level, LD_PROTOCOL, |