Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Fix copy&paste bug (#17059)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotas authored Mar 20, 2018
1 parent 0bec577 commit a0562b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private unsafe int GetHashCodeOfStringCore(string source, CompareOptions options
if (Interop.Kernel32.LCMapStringEx(_sortHandle != IntPtr.Zero ? null : _sortName,
flags,
pSource, source.Length,
null, 0,
pSortKey, sortKeyLength,
null, null, _sortHandle) != sortKeyLength)
{
throw new ArgumentException(SR.Arg_ExternalException);
Expand Down

0 comments on commit a0562b4

Please sign in to comment.