Skip to content

Commit

Permalink
Fix the last two covs
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jun 19, 2024
1 parent 08eccc5 commit a5f9a18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libr/core/cmd_anal.inc.c
Original file line number Diff line number Diff line change
Expand Up @@ -14989,6 +14989,7 @@ static void cmd_ap(RCore *core, const char *input) {
free (hex0);
free (hex1);
}
r_list_free (list);
break;
case 't': // "apt"
cmd_apt (core, input + 2);
Expand All @@ -15002,6 +15003,7 @@ static void cmd_ap(RCore *core, const char *input) {
break;
}
}

static int cmd_anal(void *data, const char *input) {
const char *r;
RCore *core = (RCore *)data;
Expand Down
2 changes: 2 additions & 0 deletions libr/core/disasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2113,10 +2113,12 @@ static void ds_show_functions(RDisasmState *ds) {
r_list_join (all_vars, vars_cache.bvars);
r_list_join (all_vars, vars_cache.svars);
r_list_foreach (all_vars, iter, var) {
#if R2_USE_NEW_ABI
if (skipped > 0) {
skipped--;
continue;
}
#endif
ds_begin_line (ds);
int idx;
RAnal *anal = ds->core->anal;
Expand Down

0 comments on commit a5f9a18

Please sign in to comment.