mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
wallet_rpc_server: fix buffer read overflow in string assignment
This commit is contained in:
parent
c88e992104
commit
4ee156556d
@ -3331,7 +3331,7 @@ namespace tools
|
||||
er.message = "Failed to encode seed";
|
||||
return false;
|
||||
}
|
||||
res.seed = electrum_words.data();
|
||||
res.seed = std::string(electrum_words.data(), electrum_words.size());
|
||||
|
||||
if (!wal)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user