mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-05 21:13:27 +00:00
Fix dpa bug in dpf (thanks @zlul)
This commit is contained in:
parent
14bc792237
commit
7811128864
@ -214,7 +214,9 @@ static void cmd_debug_pid(RCore *core, const char *input) {
|
||||
r_core_cmdf (core, "=!pid %d", core->dbg->pid);
|
||||
break;
|
||||
case 'f':
|
||||
r_debug_select (core->dbg, core->file->desc->fd, core->dbg->tid);
|
||||
if (core->file && core->file->desc) {
|
||||
r_debug_select (core->dbg, core->file->desc->fd, core->dbg->tid);
|
||||
}
|
||||
break;
|
||||
case '=':
|
||||
r_debug_select (core->dbg,
|
||||
|
Loading…
x
Reference in New Issue
Block a user