Merge branch 'hook-refactor' of https://github.com/lunixbochs/unicorn into hook

This commit is contained in:
Nguyen Anh Quynh 2016-01-25 20:42:56 +08:00
commit 0c2194078e

4
uc.c
View File

@ -1047,7 +1047,9 @@ void helper_uc_tracecode(int32_t size, uc_hook_type type, void *handle, int64_t
while (cur != NULL && !uc->stop_request) {
hook = (struct hook *)cur->data;
((uc_cb_hookcode_t)hook->callback)(uc, address, size, hook->user_data);
if (HOOK_BOUND_CHECK(hook, address)) {
((uc_cb_hookcode_t)hook->callback)(uc, address, size, hook->user_data);
}
cur = cur->next;
}
}