Skip to content

Commit 193baea

Browse files
committed
Change loop check
1 parent c006ac8 commit 193baea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/BlockDecompressor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ T FileDecompressTask<T>::run()
644644
sserr << "Failed to write decompressed block to file '" << outputName << "': " << e.what();
645645
return T(Error::ERR_READ_FILE, d, sserr.str().c_str());
646646
}
647-
} while (decoded == sa._length);
647+
} while (_cis->eof() == 0);
648648
}
649649
catch (IOException& e) {
650650
dispose();

0 commit comments

Comments
 (0)