We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 868e214 commit 6b59d1bCopy full SHA for 6b59d1b
src/io_frida.c
@@ -1587,7 +1587,11 @@ static void exec_pending_cmd_if_needed(RIOFrida * rf) {
1587
if (!rf->pending_cmd) {
1588
return;
1589
}
1590
+#if R2_VERSION_NUMBER >= 50909
1591
+ char *output = COREBIND (rf->io).cmdStr (rf->r2core, rf->pending_cmd->cmd_string);
1592
+#else
1593
char *output = COREBIND (rf->io).cmdstr (rf->r2core, rf->pending_cmd->cmd_string);
1594
+#endif
1595
1596
ut64 serial = rf->pending_cmd->serial;
1597
pending_cmd_free (rf->pending_cmd);
0 commit comments