Skip to content

Commit

Permalink
inter
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Nov 28, 2024
1 parent 6f49f83 commit 9ef84be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libr/bin/bfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ R_API char *r_bin_filter_name(RBinFile *bf, HtSU *db, ut64 vaddr, const char *na
}

R_IPI bool r_bin_filter_sym(RBinFile *bf, HtPP *ht, ut64 vaddr, RBinSymbol *sym) {
R_RETURN_IF_FAIL (ht && sym && sym->name);
R_RETURN_VAL_IF_FAIL (ht && sym && sym->name, false);
const char *name = r_bin_name_tostring2 (sym->name, 'o');
if (bf && bf->bo && bf->bo->lang) {
const char *lang = r_bin_lang_tostring (bf->bo->lang);
Expand Down
2 changes: 1 addition & 1 deletion libr/include/r_bin.h
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ R_API bool r_bin_strpurge(RBin *bin, const char *str, ut64 addr);
R_API bool r_bin_string_filter(RBin *bin, const char *str, ut64 addr);

// internal apis
R_IPI void r_bin_filter_sym(RBinFile *bf, HtPP *ht, ut64 vaddr, RBinSymbol *sym);
R_IPI bool r_bin_filter_sym(RBinFile *bf, HtPP *ht, ut64 vaddr, RBinSymbol *sym);
R_IPI RBinSection *r_bin_section_new(const char *name);
R_IPI void r_bin_section_free(RBinSection *bs);

Expand Down

0 comments on commit 9ef84be

Please sign in to comment.