mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-06-16 20:30:09 +10:00
Fix bugs.
This commit is contained in:
@@ -17,15 +17,15 @@ namespace PriFileFormat
|
||||
}
|
||||
public override bool CanRead
|
||||
{
|
||||
get { return comStream != null; }
|
||||
get { return true; }
|
||||
}
|
||||
public override bool CanSeek
|
||||
{
|
||||
get { return comStream != null; }
|
||||
get { return true; }
|
||||
}
|
||||
public override bool CanWrite
|
||||
{
|
||||
get { return comStream != null; }
|
||||
get { return true; }
|
||||
}
|
||||
public override long Length
|
||||
{
|
||||
@@ -144,8 +144,9 @@ namespace PriFileFormat
|
||||
}
|
||||
public override void Close ()
|
||||
{
|
||||
base.Close ();
|
||||
comStream = null;
|
||||
base.Close ();
|
||||
}
|
||||
~ComStreamWrapper () { comStream = null;}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user