-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The Elf32_Nhdr and Elf64_Nhdr types have the same size and layout. So far we have not exploited this fact and just stuck to the existing logic of differentiating between 32 and 64 bit types depending on the ELF bitness, as we do elsewhere. However, there is a certain amount of complexity associated with supporting the two bitnesses. With this change we introduce the ElfN_Nhdr type as an alias to Elf64_Nhdr and rely solely on it. Signed-off-by: Daniel Müller <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters