Fix dead nested assigment librz/core/casm.c
This commit is contained in:
parent
2c7d5dab23
commit
79838364d6
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ RZ_API RzList *rz_core_asm_strsearch(RzCore *core, const char *input, ut64 from,
|
|||
tokens[tokcount] = NULL;
|
||||
rz_cons_break_push(NULL, NULL);
|
||||
char *opst = NULL;
|
||||
for (at = from, matchcount = 0; at < to; at += core->blocksize) {
|
||||
for (at = from; at < to; at += core->blocksize) {
|
||||
if (rz_cons_is_breaked()) {
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue