UI/updater: Fixed a bug with deflating

The file could deflate infinitely until hard drive space ran out.
This commit is contained in:
jp9000 2017-03-07 09:01:03 -08:00
parent aab843597d
commit 77ceb97f96

View File

@ -293,10 +293,10 @@ static bool ReadHTTPZippedFile(z_stream *strm, HANDLE updateFile,
string &zipBuf, const uint8_t *buffer, DWORD outSize,
int *responseCode)
{
do {
strm->avail_in = outSize;
strm->next_in = buffer;
strm->avail_in = outSize;
strm->next_in = buffer;
do {
strm->avail_out = (uInt)zipBuf.size();
strm->next_out = (Bytef *)zipBuf.data();