We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm using Ubuntu 14.04 with the following binutils version: 2.24-5ubuntu3
The constructor of Bfd object calls function __populate_sections, which calls pybfd_get_sections_list defined in bfd.c
Using GDB I've found that program segfaults at the following place in pybfd_get_sections_list:
for (section = abfd->sections; section; section = section->next) { PyList_SetItem(list, section->index, Py_BuildValue("n", section)); }
The reason is that the memory address for abfd->sections is not accessible.
Am I doing something wrong with setup/build/install ? I've dowloaded pybfd from GutHub, built & installed using setup.py
Thanks in advance, Ilya
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I'm using Ubuntu 14.04 with the following binutils version: 2.24-5ubuntu3
The constructor of Bfd object calls function __populate_sections, which calls pybfd_get_sections_list defined in bfd.c
Using GDB I've found that program segfaults at the following place in pybfd_get_sections_list:
The reason is that the memory address for abfd->sections is not accessible.
Am I doing something wrong with setup/build/install ?
I've dowloaded pybfd from GutHub, built & installed using setup.py
Thanks in advance,
Ilya
The text was updated successfully, but these errors were encountered: