fix a comment in uc_hook_add() for UC_HOOK_INSN

This commit is contained in:
Nguyen Anh Quynh 2016-02-11 09:27:30 +08:00
parent 0822c0af85
commit 80b0356a86
1 changed files with 1 additions and 1 deletions

2
uc.c
View File

@ -983,7 +983,7 @@ uc_err uc_hook_add(uc_engine *uc, uc_hook *hh, int type, void *callback,
hook->refs = 0;
*hh = (uc_hook)hook;
// everybody but HOOK_INSN gets begin/end, so exit early here.
// UC_HOOK_INSN has an extra argument for instruction ID
if (type & UC_HOOK_INSN) {
va_list valist;