mirror of
https://github.com/cemu-project/idapython.git
synced 2026-01-31 01:15:17 +01:00
bugfix: High 64 bit addresses were not parsed correctly in IDA64
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user