mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-27 16:07:54 +00:00
Fix lea instruction not displayed right (#7529)
This commit is contained in:
parent
cce6265fcb
commit
a4b311ebac
@ -275,7 +275,7 @@ static int filter(RParse *p, RFlag *f, char *data, char *str, int len, bool big_
|
||||
const char *p = strchr (str, '[');
|
||||
const char *a = strchr (str, '+');
|
||||
const char *m = strchr (str, '*');
|
||||
if (p && a && m) {
|
||||
if (p && (a || m)) {
|
||||
banned = true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user