Skip to content

Commit 949a13a

Browse files
pavel-faltynekjeremy-visionaid
authored andcommitted
Fix the copy direction
1 parent aa849bd commit 949a13a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

StructuredStorageExplorer/StreamByteProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void CopyFrom(Stream stream)
3939
public void CopyTo(Stream stream)
4040
{
4141
_stream.Position = 0;
42-
stream.CopyTo(_stream);
42+
_stream.CopyTo(stream);
4343
}
4444

4545
void OnChanged(EventArgs e)

0 commit comments

Comments
 (0)