mxmssh / idapython

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

GetMemberStrId() missing idaapi. and should use member's fullname #12

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Call GetMemberStrId( GetFrame( here() ), 0 )

What is the expected output? What do you see instead?
Unknown name for get_member_struc

What version of the product are you using? On what operating system?
IDAPython 0.9.56, Python 2.5.1, IDA Pro Advance 5.2

Please provide any additional information below.

Change idc.py line 4496 from: -

        cs = get_member_struc(m)

to: -

    mn = idaapi.get_member_fullname(m.id)
    if not mn:
        return -1

    cs = idaapi.get_member_struc(mn)

Original issue reported on code.google.com by abuse...@gmail.com on 16 Apr 2008 at 5:24

GoogleCodeExporter commented 9 years ago
Fixed. Thanks.

Original comment by gergely.erdelyi on 28 Apr 2008 at 7:24