leave possible endless loop (#1986)

This commit is contained in:
FotoFieber 2018-11-19 16:59:14 +01:00 committed by Me No Dev
parent 1fdc660641
commit 7b811f9b3a

View File

@ -1176,6 +1176,10 @@ int HTTPClient::writeToStreamDataBlock(Stream * stream, int size)
readBytes = buff_size;
}
// stop if no more reading
if (readBytes == 0)
break;
// read data
int bytesRead = _client->readBytes(buff, readBytes);