mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
wipeable_string: fix buffer overread
This commit is contained in:
parent
7a9a4a6669
commit
6ccc51f645
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ void wipeable_string::grow(size_t sz, size_t reserved)
|
||||||
wipefunc(buffer.data(), old_sz * sizeof(char));
|
wipefunc(buffer.data(), old_sz * sizeof(char));
|
||||||
buffer.reserve(reserved);
|
buffer.reserve(reserved);
|
||||||
buffer.resize(sz);
|
buffer.resize(sz);
|
||||||
memcpy(buffer.data(), tmp.get(), sz * sizeof(char));
|
memcpy(buffer.data(), tmp.get(), old_sz * sizeof(char));
|
||||||
wipefunc(tmp.get(), old_sz * sizeof(char));
|
wipefunc(tmp.get(), old_sz * sizeof(char));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue