Fix dead nested assigment librz/core/casm.c

This commit is contained in:
Alexis Ehret 2021-01-28 21:57:56 +01:00 committed by Riccardo Schirone
parent 2c7d5dab23
commit 79838364d6

View file

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