idaapi.dbg_get_registers() was crashing with registers that had a custom format

This commit is contained in:
elias.bachaalany 2010-08-17 12:31:36 +00:00
parent 2c33ce00c5
commit 67c94b2f02

View File

@ -214,7 +214,8 @@ static PyObject *dbg_get_registers()
PyObject *py_bits;
// Does this register have bit strings?
if ( ri.bit_strings != NULL )
// (Make sure it does not use custom formats because bit_string would be the format name)
if ( ri.bit_strings != NULL && (ri.flags & REGISTER_CUSTFMT) == 0 )
{
int nbits = (int)b2a_width((int)get_dtyp_size(ri.dtyp), 0) * 4;
py_bits = PyList_New(nbits);