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 7ae138248176081ea72808dfee823dd923420c07
4 changes: 2 additions & 2 deletions src/coreclr/pal/src/safecrt/input.inl
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ getnum:

if (_ISXDIGIT(ch)) {
num64 <<= 4;
ch = _hextodec(ch);
ch = _hextodec((_TCHAR)ch);
}
else
++done_flag;
Expand Down Expand Up @@ -910,7 +910,7 @@ getnum:

if (_ISXDIGIT(ch)) {
number = (number << 4);
ch = _hextodec(ch);
ch = _hextodec((_TCHAR)ch);
}
else
++done_flag;
Expand Down