Only Dispose of NFS on disposing
This commit is contained in:
parent
05a4ece8d1
commit
0b20aa751f
1 changed files with 2 additions and 1 deletions
|
|
@ -17,7 +17,8 @@ namespace AaxDecrypter
|
|||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
NetworkFileStream?.Dispose();
|
||||
if (disposing)
|
||||
NetworkFileStream?.Dispose();
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue