dso problem (#5825)

This commit is contained in:
saucec0de 2016-09-22 15:31:05 +02:00 committed by radare
parent c908e0f818
commit 5df82dd364

View File

@ -874,8 +874,8 @@ R_API int r_debug_step_over(RDebug *dbg, int steps) {
ins_size = op.fail;
}
// Skip over all the subroutine calls
if (op.type & R_ANAL_OP_TYPE_MASK == R_ANAL_OP_TYPE_CALL ||
op.type & R_ANAL_OP_TYPE_MASK == R_ANAL_OP_TYPE_UCALL) {
if ((op.type & R_ANAL_OP_TYPE_MASK) == R_ANAL_OP_TYPE_CALL ||
(op.type & R_ANAL_OP_TYPE_MASK) == R_ANAL_OP_TYPE_UCALL) {
if (!r_debug_continue_until (dbg, ins_size)) {
eprintf ("Could not step over call @ 0x%"PFMT64x"\n", pc);
return steps_taken;