Skip to content

Commit 920d0d2

Browse files
fix #11 - BZip2InputStream CanSeek should be false
1 parent 8c1f35c commit 920d0d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ICSharpCode.SharpZipLib/BZip2/BZip2InputStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public override bool CanRead {
125125
/// </summary>
126126
public override bool CanSeek {
127127
get {
128-
return baseStream.CanSeek;
128+
return false;
129129
}
130130
}
131131

0 commit comments

Comments
 (0)