fixed double free in ds_update_ref_lines

This commit is contained in:
wargio 2021-01-12 13:17:25 +01:00 committed by pancake
parent cfcf4f86ac
commit f2314d4533

View File

@ -2390,6 +2390,9 @@ static void ds_update_ref_lines(RDisasmState *ds) {
ds->refline = strdup ("");
ds->refline2 = strdup ("");
ds->prev_line_col = strdup ("");
ds->line = NULL;
ds->line_col = NULL;
ds->prev_line_col = NULL;
}
}