Fixed adding a string with a large number of trailing zeros to StringBuilder, which sometimes caused the thread to hang
This commit is contained in:
Artyom Tarasov 2020-05-14 20:47:26 +03:00 коммит произвёл GitHub
Родитель b3c6c43789
Коммит 17c90a7e17
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -111,7 +111,7 @@ namespace Microsoft.AspNetCore.NodeServices.Util
// get the rest
if (lineBreakPos < 0 && startPos < chunkLength)
{
_linesBuffer.Append(buf, startPos, chunkLength);
_linesBuffer.Append(buf, startPos, chunkLength - startPos);
}
}
}