Remove random change of buffer len that results in index out of bounds in subsequent code (#11198)

This commit is contained in:
exokortex 2018-08-22 17:15:24 +02:00 committed by radare
parent d2a6415556
commit 49b9ffcf9d

View File

@ -4620,7 +4620,7 @@ toro:
ds_print_esil_anal_init (ds);
inc = 0;
if (!ds->l) {
len = ds->l = core->blocksize;
ds->l = core->blocksize;
}
r_cons_break_push (NULL, NULL);