1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a bug in GZIPDecompressorInputStream::isExhausted()

This commit is contained in:
ed 2018-09-06 09:34:47 +01:00
parent e8e69410bb
commit d7e2a8a4ec

View file

@ -270,7 +270,7 @@ int GZIPDecompressorInputStream::read (void* destBuffer, int howMany)
bool GZIPDecompressorInputStream::isExhausted()
{
return helper->error || isEof;
return helper->error || helper->finished || isEof;
}
int64 GZIPDecompressorInputStream::getPosition()