mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 23:16:05 +00:00
Removed no longer necessary negative check (#8194)
This commit is contained in:
parent
a9ab7ed6aa
commit
6ea639a716
@ -309,7 +309,7 @@ static int string_scan_range(RList *list, const ut8 *buf, int min,
|
||||
runes++;
|
||||
/* Print the escape code */
|
||||
} else if (r && r < 0x100 && strchr ("\b\v\f\n\r\t\a\e", (char)r)) {
|
||||
if ((i + 32) < sizeof (tmp) && r < 28 && r > 0) {
|
||||
if ((i + 32) < sizeof (tmp) && r < 28) {
|
||||
tmp[i + 0] = '\\';
|
||||
tmp[i + 1] = " abtnvfr e"[r];
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user