Make SharpCompressArchiveFile throw on double Dispose

This commit is contained in:
YoshiRulz 2021-01-21 22:54:34 +10:00
parent dbe0229810
commit b4445c6f8f
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,8 @@ namespace BizHawk.Client.Common
public void Dispose()
{
_archive?.Dispose();
if (_archive == null) throw new ObjectDisposedException(nameof(SharpCompressArchiveFile));
_archive.Dispose();
_archive = null;
}