Merge pull request #4224

c5e2aee updates: fix hash sanity checking (moneromooo-monero)
release-v0.5.1
luigi1111 6 years ago
commit 4e6187faf3
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -69,12 +69,12 @@ namespace tools
continue; continue;
bool alnum = true; bool alnum = true;
for (auto c: hash) for (auto c: fields[3])
if (!isalnum(c)) if (!isalnum(c))
alnum = false; alnum = false;
if (hash.size() != 64 && !alnum) if (fields[3].size() != 64 && !alnum)
{ {
MWARNING("Invalid hash: " << hash); MWARNING("Invalid hash: " << fields[3]);
continue; continue;
} }

Loading…
Cancel
Save