mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 19:33:28 +01:00
Merge pull request #4224
c5e2aee
updates: fix hash sanity checking (moneromooo-monero)
This commit is contained in:
commit
4e6187faf3
@ -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…
Reference in New Issue
Block a user