mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ZipFileEntry] Take care of Stored cases
This commit is contained in:
@@ -813,6 +813,15 @@ namespace ROMVault2.SupportedFiles.Zip
|
|||||||
dfStream.Close();
|
dfStream.Close();
|
||||||
dfStream.Dispose();
|
dfStream.Dispose();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
FileStream fsStream = _readStream as FileStream;
|
||||||
|
if (fsStream != null)
|
||||||
|
{
|
||||||
|
fsStream.Close();
|
||||||
|
fsStream.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
return ZipReturn.ZipGood;
|
return ZipReturn.ZipGood;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user