mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 17:38:12 +00:00
parent
b19f1607c6
commit
19b92a4a7e
1 changed files with 10 additions and 10 deletions
16
uc.c
16
uc.c
|
@ -1069,20 +1069,20 @@ uc_err uc_hook_add(uc_engine *uc, uc_hook *hh, int type, void *callback,
|
||||||
UNICORN_EXPORT
|
UNICORN_EXPORT
|
||||||
uc_err uc_hook_del(uc_engine *uc, uc_hook hh)
|
uc_err uc_hook_del(uc_engine *uc, uc_hook hh)
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i;
|
||||||
struct hook *hook = (struct hook *)hh;
|
struct hook *hook = (struct hook *)hh;
|
||||||
int type = hook->type;
|
// we can't dereference hook->type if hook is invalid
|
||||||
|
// so for now we need to iterate over all possible types to remove the hook
|
||||||
while ((type >> i) > 0 && i < UC_HOOK_MAX) {
|
// which is less efficient
|
||||||
if ((type >> i) & 1) {
|
// an optimization would be to align the hook pointer
|
||||||
if (list_remove(&uc->hook[i], (void *)hh)) {
|
// and store the type mask in the hook pointer.
|
||||||
|
for (i = 0; i < UC_HOOK_MAX; i++) {
|
||||||
|
if (list_remove(&uc->hook[i], (void *)hook)) {
|
||||||
if (--hook->refs == 0) {
|
if (--hook->refs == 0) {
|
||||||
free(hook);
|
free(hook);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
i++;
|
|
||||||
}
|
|
||||||
return UC_ERR_OK;
|
return UC_ERR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue