xzlwbl / idapython

Automatically exported from code.google.com/p/idapython
Other
0 stars 0 forks source link

dbg_read_memory OverflowError #51

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Start IDA with a simple binary
2. print dbg_read_memory(cpu.Esp, 4)
3.

What is the expected output? What do you see instead?
Python>print dbg_read_memory(0x08048085, 4)
?X^P
Python>print dbg_read_memory(cpu.Esp, 4)
None
Traceback (most recent call last):
  File "<string>", line 1, in <module>
OverflowError: long int too large to convert to int
Python>print "%x" % cpu.Esp
bfaff348

What version of the product are you using? On what operating system?

Linux operating system (wine + remote linux_server)
IDA 5.6.0.931

Python interpreter version 2.5.4 final (serial 0)
Copyright (c) 1990-2009 Python Software Foundation - http://www.python.org/

IDAPython version 1.1.0 final (serial 0)
Copyright (c) 2004-2009 Gergely Erdelyi - http://d-dome.net/idapython/

Please provide any additional information below.

Original issue reported on code.google.com by anthony....@gmail.com on 27 May 2010 at 8:11

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r307.

Original comment by elias.ba...@gmail.com on 4 Jun 2010 at 3:02