This commit is contained in:
Ryan Hileman 2015-10-05 23:30:54 -07:00
parent b0fa23ebe1
commit e6b07f4f65
1 changed files with 1 additions and 2 deletions

3
hook.c
View File

@ -27,8 +27,7 @@ size_t hook_find_new(struct uc_struct *uc)
return 0;
// reset the newly added slots
memset(new + uc->hook_size * sizeof(uc->hook_callbacks[0]), 0,
HOOK_SIZE * sizeof(uc->hook_callbacks[0]));
memset(new + uc->hook_size, 0, HOOK_SIZE * sizeof(uc->hook_callbacks[0]));
uc->hook_callbacks = new;
uc->hook_size += HOOK_SIZE;