1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-21 18:22:33 +01:00

util/vm_native.cpp: Fix memory leak

This commit is contained in:
Elad 2024-11-15 14:00:30 +02:00 committed by GitHub
parent 7866dc2e34
commit e7faec6b0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -139,7 +139,7 @@ namespace utils
const u64 map_size = s_is_mapping.size();
for (u64 i = map_size; i != umax; i--)
for (u64 i = map_size - 1; i != umax; i--)
{
auto& info = s_is_mapping[i];