We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1682669 commit 94f07e0Copy full SHA for 94f07e0
src/CatLib.Core/CatLib.Core.csproj
@@ -94,6 +94,7 @@
94
<Compile Include="Support\Storage\IStorage.cs" />
95
<Compile Include="Support\Stream\CombineStream.cs" />
96
<Compile Include="Support\Stream\PipelineStream.cs" />
97
+ <Compile Include="Support\Stream\SegmentStream.cs" />
98
<Compile Include="Support\Stream\StorageStream.cs" />
99
<Compile Include="Support\Storage\MemoryStorage.cs" />
100
<Compile Include="Support\Stream\WrapperStream.cs" />
src/CatLib.Core/Support/Stream/WrapperStream.cs
@@ -46,7 +46,7 @@ public class WrapperStream : Stream
46
public override long Position
47
{
48
get => BaseStream.Position;
49
- set => BaseStream.Position = value;
+ set => Seek(value, SeekOrigin.Begin);
50
}
51
52
/// <summary>
0 commit comments