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:
parent
e8e69410bb
commit
d7e2a8a4ec
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue