Merge pull request #2995

6ccc51f6 wipeable_string: fix buffer overread (moneromooo-monero)
pull/95/head
Riccardo Spagni 6 years ago
commit 1c11ec71b5
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -100,7 +100,7 @@ void wipeable_string::grow(size_t sz, size_t reserved)
wipefunc(buffer.data(), old_sz * sizeof(char));
buffer.reserve(reserved);
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));
}

Loading…
Cancel
Save