wipeable_string: fix buffer overread

pull/95/head
moneromooo-monero 7 years ago
parent 7a9a4a6669
commit 6ccc51f645
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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