Skip to content

Commit

Permalink
don't close stream in StreamByteTarget
Browse files Browse the repository at this point in the history
  • Loading branch information
rcd committed Jan 6, 2013
1 parent dda31c3 commit d5e76d3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions DICOM/IO/StreamByteTarget.cs
Expand Up @@ -91,8 +91,9 @@ public class StreamByteTarget : IDisposable, IByteTarget {
}

public void Close() {
_stream.Close();
_stream = null;
// don't close stream
//_stream.Close();
//_stream = null;
}

public void Dispose() {
Expand Down

0 comments on commit d5e76d3

Please sign in to comment.