Forgot to WriteFast in SocketOutput (#1527)

This commit is contained in:
David Fowler 2017-03-21 03:21:31 -07:00 committed by GitHub
parent cf576559b6
commit f546f16356
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Internal.Http
ChunkWriter.WriteBeginChunkBytes(ref writableBuffer, buffer.Count);
}
writableBuffer.Write(buffer);
writableBuffer.WriteFast(buffer);
if (chunk)
{