mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-28 03:54:18 +01:00
bugfix: High 64 bit addresses were not parsed correctly in IDA64
This commit is contained in:
parent
109158fabb
commit
58a002ce5b
@ -914,6 +914,7 @@ bool PyW_GetNumber(PyObject *py_var, uint64 *num, bool *is_64)
|
|||||||
*is_64 = true;
|
*is_64 = true;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
PyErr_Clear();
|
||||||
|
|
||||||
// Try to parse as uint64
|
// Try to parse as uint64
|
||||||
unsigned PY_LONG_LONG ull = PyLong_AsUnsignedLongLong(py_var);
|
unsigned PY_LONG_LONG ull = PyLong_AsUnsignedLongLong(py_var);
|
||||||
|
Loading…
Reference in New Issue
Block a user