core/disasm: fix double free when freeing ds->hint (#11484)

This commit is contained in:
Riccardo Schirone 2018-09-11 09:48:13 +02:00 committed by GitHub
parent 4e2ab95628
commit 5099a481f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -841,7 +841,6 @@ static void ds_free(RDisasmState *ds) {
free (ds->opstr);
free (ds->osl);
free (ds->sl);
free (ds->hint);
free (ds->_tabsbuf);
R_FREE (ds);
}