ELF sections with type SHT_NOBITS only exist in memory, and
don't contain any data in the ELF file itself. The range
returned by file_range() should be empty for such sections.
The previously returned range was wrong, and overlapped
the file range of the next section.
ELF sections with type SHT_NOBITS only exist in memory, and don't contain any data in the ELF file itself. The range returned by
file_range()
should be empty for such sections.The previously returned range was wrong, and overlapped the file range of the next section.
Fixes #252.