bugfix: High 64 bit addresses were not parsed correctly in IDA64

This commit is contained in:
elias.bachaalany 2011-04-18 16:14:58 +00:00
parent 109158fabb
commit 58a002ce5b

View File

@ -914,6 +914,7 @@ bool PyW_GetNumber(PyObject *py_var, uint64 *num, bool *is_64)
*is_64 = true;
return true;
}
PyErr_Clear();
// Try to parse as uint64
unsigned PY_LONG_LONG ull = PyLong_AsUnsignedLongLong(py_var);