Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More violations
  • Loading branch information
AaronRobinsonMSFT committed Jun 8, 2022
commit b3ddeae498a6f173c5f33f5801dc18f963791955
2 changes: 1 addition & 1 deletion src/coreclr/pal/src/safecrt/wcslwr_s.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ DLLEXPORT errno_t __cdecl _wcslwr_s(char16_t *string, size_t sz)

for (int i = 0; string[i] != 0; i++)
{
string[i] = towlower(string[i]);
string[i] = (char16_t)towlower(string[i]);
}

_FILL_STRING(string, sz, length + 1);
Expand Down