EmuHawk: SharpCompress - null check

This commit is contained in:
Asnivor 2019-01-14 15:56:15 +00:00
parent ccb9084ae5
commit a671f10c9b
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ namespace BizHawk.Client.Common
catch { }
finally
{
arcTest.Dispose();
if (arcTest != null)
arcTest.Dispose();
}
return false;