[ArchiveTools] We don't want to dispose here

This commit is contained in:
Matt Nadareski
2016-10-17 15:31:05 -07:00
parent b9d8ce356c
commit 4ca06e6763

View File

@@ -327,8 +327,7 @@ namespace SabreTools.Helper
GZipStream gzstream = new GZipStream(File.OpenRead(input), CompressionMode.Decompress);
gzstream.CopyTo(st);
// Dispose of the streams
st.Dispose();
// Dispose of the stream
gzstream.Dispose();
}
}