mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-19 22:03:14 +00:00
Fix ax\x00
glitch causing projects to be noisy ##projects
This commit is contained in:
parent
f2943c0c0a
commit
1ac011ebe6
@ -228,7 +228,10 @@ R_API void r_anal_xrefs_list(RAnal *anal, int rad) {
|
||||
pj_a (pj);
|
||||
}
|
||||
r_list_foreach (list, iter, ref) {
|
||||
int t = ref->type ? R_ANAL_REF_TYPE_MASK (ref->type): ' ';
|
||||
int t = R_ANAL_REF_TYPE_MASK (ref->type);
|
||||
if (!t) {
|
||||
t = ' ';
|
||||
}
|
||||
switch (rad) {
|
||||
case '*':
|
||||
// TODO: export/import the read-write-exec information
|
||||
|
Loading…
x
Reference in New Issue
Block a user