mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-06 05:28:26 +00:00
Fix segfault on arm64 brk (#8071)
This commit is contained in:
parent
01d3179a61
commit
b21fc94871
@ -532,7 +532,11 @@ static bool parseOperands(char* str, ArmOp *op) {
|
|||||||
free (t);
|
free (t);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (!x) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
token = ++x;
|
token = ++x;
|
||||||
|
|
||||||
operand ++;
|
operand ++;
|
||||||
if (operand > MAX_OPERANDS) {
|
if (operand > MAX_OPERANDS) {
|
||||||
free (t);
|
free (t);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user