diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-11-30 09:44:54 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-11-30 09:44:54 +0000 | 
| commit | c28e15c68249a897be37d2bf5e49ab02d60479a6 (patch) | |
| tree | 654b459c77587a46d2bbe1817cc9be5bd4027180 | |
| parent | fe0585ec919117b5e8cad63d89c4c09685df0042 (diff) | |
Dan Fandrich's fix for libz 1.1 and "extra field" usage in a gzip stream
| -rw-r--r-- | lib/content_encoding.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/content_encoding.c b/lib/content_encoding.c index ac17befaf..473b82b1e 100644 --- a/lib/content_encoding.c +++ b/lib/content_encoding.c @@ -210,6 +210,7 @@ static enum {        return GZIP_UNDERFLOW;      len -= (extra_len + 2); +    data += (extra_len + 2);    }    if (flags & ORIG_NAME) {  | 
