Remove reading of program headers. It is not necessary.

This commit is contained in:
Mario Hüttel 2023-01-04 14:53:25 +01:00
parent f4f373d65d
commit 5b86194734
1 changed files with 0 additions and 17 deletions

View File

@ -232,9 +232,6 @@ static int elf_patch_update_info(elfpatch_handle_t *ep)
{
Elf_Kind ek;
const char *type_string = "unrecognized";
size_t header_count = 0ull;
GElf_Phdr phdr;
size_t i;
ret_val_if_ep_err(ep, -1001);
@ -276,20 +273,6 @@ static int elf_patch_update_info(elfpatch_handle_t *ep)
return -1;
}
/* Get program headers */
if ( elf_getphdrnum(ep->elf, &header_count) != 0) {
print_err("Error reading count of program headers: %s\n", elf_errmsg(-1));
return -1;
}
for (i = 0ull; i < header_count; i++) {
if (gelf_getphdr(ep->elf, (int)i, &phdr) != &phdr) {
print_err("Error reading program header (%zu): %s\n", i, elf_errmsg(-1));
return -1;
}
print_debug("Read program header %zu\n", i);
}
return 0;
}