mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ArchiveTools] We don't want to dispose here
This commit is contained in:
@@ -327,8 +327,7 @@ namespace SabreTools.Helper
|
|||||||
GZipStream gzstream = new GZipStream(File.OpenRead(input), CompressionMode.Decompress);
|
GZipStream gzstream = new GZipStream(File.OpenRead(input), CompressionMode.Decompress);
|
||||||
gzstream.CopyTo(st);
|
gzstream.CopyTo(st);
|
||||||
|
|
||||||
// Dispose of the streams
|
// Dispose of the stream
|
||||||
st.Dispose();
|
|
||||||
gzstream.Dispose();
|
gzstream.Dispose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user