mirror of
https://github.com/curl/curl.git
synced 2026-07-24 22:27:17 +03:00
HTTP: Don't attempt to needlessly decompress redirect body
This change fixes a regression where redirect body would needlessly be
decompressed even though it was to be ignored anyway. As it happens this
causes secondary issues since there appears to be a bug in apache2 that
it in certain conditions generates a corrupt zlib response. The
regression was created by commit:
dbcced8e32
Discovered-by: Harry Sintonen
Closes #2798
This commit is contained in:
parent
e78f2cfe56
commit
1836d59ed8
1 changed files with 1 additions and 1 deletions
|
|
@ -797,7 +797,7 @@ static CURLcode readwrite_data(struct Curl_easy *data,
|
|||
nread);
|
||||
}
|
||||
}
|
||||
else
|
||||
else if(!k->ignorebody)
|
||||
result = Curl_unencode_write(conn, k->writer_stack, k->str, nread);
|
||||
}
|
||||
k->badheader = HEADER_NORMAL; /* taken care of now */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue