Oops, forgot to free up zlib resources.

This commit is contained in:
Unknown W. Brackets 2014-11-03 13:40:09 -08:00
parent f1d43e7e90
commit 10bcb323ac

View File

@ -426,6 +426,8 @@ bool CISOFileBlockDevice::ReadBlocks(u32 minBlock, int count, u8 *outPtr) {
block += frameBlocks;
outPtr += frameBlocks * GetBlockSize();
}
inflateEnd(&z);
return true;
}