diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-10-26 18:54:30 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-10-26 19:42:58 +0200 |
commit | 15db77f4dd7f1a7963398f1576580b577a1697bc (patch) | |
tree | 0414a87045cbdf0618c23534da58f010d62a8808 /src/uint256.cpp | |
parent | f4e4ea1ceecfb978584bd4f43cb6826e44ba86a3 (diff) |
Don't rely on locale dependent functions in base_blob<BITS>::SetHex(...) (uint256), DecodeBase58(...), ParseMoney(...) and ParseHex(...)
Diffstat (limited to 'src/uint256.cpp')
-rw-r--r-- | src/uint256.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uint256.cpp b/src/uint256.cpp index e513dc1de7..e940f90cf0 100644 --- a/src/uint256.cpp +++ b/src/uint256.cpp @@ -29,7 +29,7 @@ void base_blob<BITS>::SetHex(const char* psz) memset(data, 0, sizeof(data)); // skip leading spaces - while (isspace(*psz)) + while (IsSpace(*psz)) psz++; // skip 0x |