From 8178271aac1e615c00d42a9209d39c7586bb6d9c Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 23 Feb 2021 20:10:47 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/ReadBufferState.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/Net/ReadBufferState.cs b/websocket-sharp/Net/ReadBufferState.cs index 039d3c9a..b967b4a4 100644 --- a/websocket-sharp/Net/ReadBufferState.cs +++ b/websocket-sharp/Net/ReadBufferState.cs @@ -62,8 +62,9 @@ namespace WebSocketSharp.Net _buffer = buffer; _offset = offset; _count = count; - _initialCount = count; _asyncResult = asyncResult; + + _initialCount = count; } #endregion