Fix lea instruction not displayed right (#7529)

This commit is contained in:
Tobias Gross 2017-05-19 13:32:03 +02:00 committed by radare
parent cce6265fcb
commit a4b311ebac

View File

@ -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;
}
}