diff options
| author | practicalswift <[email protected]> | 2018-10-26 18:54:30 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-10-26 19:42:58 +0200 |
| commit | 15db77f4dd7f1a7963398f1576580b577a1697bc (patch) | |
| tree | 0414a87045cbdf0618c23534da58f010d62a8808 /src/uint256.cpp | |
| parent | Merge #13515: travis: Enable qt for all jobs (diff) | |
| download | discoin-15db77f4dd7f1a7963398f1576580b577a1697bc.tar.xz discoin-15db77f4dd7f1a7963398f1576580b577a1697bc.zip | |
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 e513dc1de..e940f90cf 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 |