From ed2134bdcf763b2b6a11742911b4c5efd1de4550 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Wed, 4 Nov 2015 16:11:28 +0700 Subject: Change Close calls to Dispose calls for PORTABLE --- crypto/bzip2/src/CBZip2InputStream.cs | 6 ++++-- crypto/bzip2/src/CBZip2OutputStream.cs | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'crypto/bzip2/src') diff --git a/crypto/bzip2/src/CBZip2InputStream.cs b/crypto/bzip2/src/CBZip2InputStream.cs index 7efb3b3ab..82ff83e42 100644 --- a/crypto/bzip2/src/CBZip2InputStream.cs +++ b/crypto/bzip2/src/CBZip2InputStream.cs @@ -25,6 +25,8 @@ using System; using System.IO; +using Org.BouncyCastle.Utilities; + namespace Org.BouncyCastle.Apache.Bzip2 { /** @@ -286,10 +288,10 @@ namespace Org.BouncyCastle.Apache.Bzip2 Cadvise(); } - private void BsFinishedWithStream() { + private void BsFinishedWithStream() { try { if (this.bsStream != null) { - this.bsStream.Close(); + Platform.Dispose(this.bsStream); this.bsStream = null; } } catch { diff --git a/crypto/bzip2/src/CBZip2OutputStream.cs b/crypto/bzip2/src/CBZip2OutputStream.cs index bf43a6a6c..73e6979d8 100644 --- a/crypto/bzip2/src/CBZip2OutputStream.cs +++ b/crypto/bzip2/src/CBZip2OutputStream.cs @@ -25,6 +25,8 @@ using System; using System.IO; +using Org.BouncyCastle.Utilities; + namespace Org.BouncyCastle.Apache.Bzip2 { /** @@ -393,7 +395,7 @@ namespace Org.BouncyCastle.Apache.Bzip2 closed = true; base.Close(); - bsStream.Close(); + Platform.Dispose(this.bsStream); } public void Finish() { -- cgit 1.5.1