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 4f57a4a commit 2dc5694Copy full SHA for 2dc5694
src/Servers/Kestrel/Core/src/Internal/Http/Http1OutputProducer.cs
@@ -481,10 +481,11 @@ public void Reset()
481
{
482
Debug.Assert(_currentSegmentOwner == null);
483
Debug.Assert(_completedSegments == null || _completedSegments.Count == 0);
484
+ // Cleared in sequential address ascending order
485
+ _currentMemoryPrefixBytes = 0;
486
_autoChunk = false;
- _startCalled = false;
487
_currentChunkMemoryUpdated = false;
- _currentMemoryPrefixBytes = 0;
488
+ _startCalled = false;
489
}
490
491
private ValueTask<FlushResult> WriteAsync(
0 commit comments