summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/StringUtil.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/Src/StringUtil.cpp')
-rw-r--r--Source/Core/Common/Src/StringUtil.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/Core/Common/Src/StringUtil.cpp b/Source/Core/Common/Src/StringUtil.cpp
index 18a3575086..94f01e66f8 100644
--- a/Source/Core/Common/Src/StringUtil.cpp
+++ b/Source/Core/Common/Src/StringUtil.cpp
@@ -125,7 +125,7 @@ std::string StripQuotes(const std::string& s)
bool TryParse(const std::string &str, u32 *const output)
{
char *endptr = NULL;
- u32 value = strtoul(str.c_str(), &endptr, 0);
+ unsigned long value = strtoul(str.c_str(), &endptr, 0);
if (!endptr || *endptr)
return false;
@@ -133,7 +133,13 @@ bool TryParse(const std::string &str, u32 *const output)
if (value == ULONG_MAX && errno == ERANGE)
return false;
- *output = value;
+ if (ULONG_MAX > UINT_MAX) {
+ // Leading bits must be either all 0 or all 1.
+ if ((~value | UINT_MAX) != ULONG_MAX && (value | UINT_MAX) != ULONG_MAX)
+ return false;
+ }
+
+ *output = static_cast<u32>(value);
return true;
}