mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 07:57:35 +00:00
dso problem (#5825)
This commit is contained in:
parent
c908e0f818
commit
5df82dd364
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user