mirror of
https://github.com/monero-project/monero.git
synced 2024-12-24 12:39:59 +00:00
Merge pull request #4726
91eaea9c
mnemonics: fix words_to_bytes on big endian (moneromooo-monero)
This commit is contained in:
commit
b60078d1b3
1 changed files with 1 additions and 0 deletions
|
@ -335,6 +335,7 @@ namespace crypto
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
w[0] = SWAP32LE(w[0]);
|
||||||
dst.append((const char*)&w[0], 4); // copy 4 bytes to position
|
dst.append((const char*)&w[0], 4); // copy 4 bytes to position
|
||||||
memwipe(w, sizeof(w));
|
memwipe(w, sizeof(w));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue