diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-09-12 16:34:16 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-09-12 16:34:16 +0200 |
commit | 22085f7d6e8592b771dafd57673d875c73303f4f (patch) | |
tree | 4cb977f4d3c8c0daa392d3eb417a454e350ae4a0 /lib/content_encoding.c | |
parent | 2c1b4e74e407bb729cdf7c522d0fe0c94f97963c (diff) | |
download | curl-22085f7d6e8592b771dafd57673d875c73303f4f.tar.gz |
inflate_stream: remove redundant check that is always true
Diffstat (limited to 'lib/content_encoding.c')
-rw-r--r-- | lib/content_encoding.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/content_encoding.c b/lib/content_encoding.c index f8c9234d9..6fb7c8d3a 100644 --- a/lib/content_encoding.c +++ b/lib/content_encoding.c @@ -123,7 +123,9 @@ inflate_stream(struct connectdata *conn, } /* Done with these bytes, exit */ - if(status == Z_OK && z->avail_in == 0) { + + /* status is always Z_OK at this point! */ + if(z->avail_in == 0) { free(decomp); return result; } |