/R: halt is not a trap

This commit is contained in:
pancake 2013-12-02 16:45:10 +01:00
parent cc41919c04
commit 48bf70710c
2 changed files with 2 additions and 2 deletions

View File

@ -390,7 +390,7 @@ default:
op->fail = addr + oplen;
break;
case UD_Ihlt:
op->type = R_ANAL_OP_TYPE_TRAP;
//op->type = R_ANAL_OP_TYPE_HALT;
break;
case UD_Iret:
case UD_Iretf:

View File

@ -237,7 +237,7 @@ static ut64 findprevopsz(RCore *core, ut64 addr) {
return UT64_MAX;
}
static int r_core_search_rop (RCore *core, ut64 from, ut64 to, int opt) {
static int r_core_search_rop(RCore *core, ut64 from, ut64 to, int opt) {
ut8 *buf;
ut64 prev;
RAsmOp asmop;