mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-12 02:44:00 +00:00
Merge pull request #1288 from heuripedes/master
Revert "(cheats.c) Fix buffer reallocation"
This commit is contained in:
commit
199cbda252
6
cheats.c
6
cheats.c
@ -262,11 +262,9 @@ bool cheat_manager_realloc(cheat_manager_t *handle, unsigned new_size)
|
||||
}
|
||||
|
||||
handle->buf_size = new_size;
|
||||
handle->size = new_size;
|
||||
|
||||
if (handle->size > handle->buf_size)
|
||||
handle->size = handle->buf_size;
|
||||
|
||||
for (i = handle->size; i < handle->buf_size; i++)
|
||||
for (i = 0; i < handle->size; i++)
|
||||
{
|
||||
handle->cheats[i].desc = NULL;
|
||||
handle->cheats[i].code = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user