-
-
[讨论]发现udis86源码中可能存在一个错误,求论证~
-
发表于:
2014-1-5 12:36
3885
-
[讨论]发现udis86源码中可能存在一个错误,求论证~
代码在syn-att.c和syn-intel.c中,处理反汇编前缀的一段代码:
syn-att.c的代码:
if (u->pfx_lock)
ud_asmprintf(u, "lock ");
if (u->pfx_rep) {
ud_asmprintf(u, "rep ");
} else if (u->pfx_rep) {
ud_asmprintf(u, "repe ");
} else if (u->pfx_repne) {
ud_asmprintf(u, "repne ");
}
syn-intel.c
if (u->pfx_lock) {
ud_asmprintf(u, "lock ");
}
if (u->pfx_rep) {
ud_asmprintf(u, "rep ");
} else if (u->pfx_repe) {
ud_asmprintf(u, "repe ");
} else if (u->pfx_repne) {
ud_asmprintf(u, "repne ");
}
在att语法的判断"repe "那里是不是写错了?应该是else if (u->pfx_repe)吧?
[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课