mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 22:32:57 +02:00
Guard against memory corruption in Space::processResets()
Check the proxyID before reading from the _proxies vector and writing into the _owners vector.
This commit is contained in:
parent
7fb2e535ff
commit
9772fc4e22
1 changed files with 5 additions and 0 deletions
|
@ -44,6 +44,11 @@ void Space::processResets(const Transaction::Resets& transactions) {
|
|||
for (auto& reset : transactions) {
|
||||
// Access the true item
|
||||
auto proxyID = std::get<0>(reset);
|
||||
|
||||
// Guard against proxyID being past the end of the list.
|
||||
if (proxyID >= _proxies.size() || proxyID >= _owners.size()) {
|
||||
continue;
|
||||
}
|
||||
auto& item = _proxies[proxyID];
|
||||
|
||||
// Reset the item with a new payload
|
||||
|
|
Loading…
Reference in a new issue