Closed lowleveldesign closed 1 year ago
The IndexOf(\0\0) call in the ParseEnvironmentBlock function does not work as expected starting from .NET 5, because of changes in the globalization API. This PR fixes the problem by forcing the ordinal search for the \0\0 token.
IndexOf(\0\0)
ParseEnvironmentBlock
\0\0
Thanks.
The
IndexOf(\0\0)
call in theParseEnvironmentBlock
function does not work as expected starting from .NET 5, because of changes in the globalization API. This PR fixes the problem by forcing the ordinal search for the\0\0
token.