summaryrefslogtreecommitdiff
path: root/libebl/ebl_check_special_symbol.c
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2018-08-04 20:36:09 +0200
committerMark Wielaard <mark@klomp.org>2018-09-13 14:30:30 +0200
commitba2a7f4fa5f453c2b0a729bf519240a8f66a1867 (patch)
tree6fd2f8cd25f5750e815d7cab22adbd4f5d345e68 /libebl/ebl_check_special_symbol.c
parentfb0457f4671e7e0f8331453348005ed6beab275e (diff)
downloadelfutils-ba2a7f4fa5f453c2b0a729bf519240a8f66a1867.tar.gz
backends: Always use elf_getshdrstrndx in check_special_symbol.
The check_special_symbol backend functions used the Ehdr e_shstrndx field to get at the name of sections. This is not correct if there are more than SHN_LORESERVE sections. Always use elf_getshdrstrndx to get the shstrtab section. And drop the Ehdr argument that isn't necessary anymore. Signed-off-by: Mark Wielaard <mark@klomp.org>
Diffstat (limited to 'libebl/ebl_check_special_symbol.c')
-rw-r--r--libebl/ebl_check_special_symbol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libebl/ebl_check_special_symbol.c b/libebl/ebl_check_special_symbol.c
index bdcb026c..1f60c3f0 100644
--- a/libebl/ebl_check_special_symbol.c
+++ b/libebl/ebl_check_special_symbol.c
@@ -35,11 +35,11 @@
bool
-ebl_check_special_symbol (Ebl *ebl, GElf_Ehdr *ehdr, const GElf_Sym *sym,
+ebl_check_special_symbol (Ebl *ebl, const GElf_Sym *sym,
const char *name, const GElf_Shdr *destshdr)
{
if (ebl == NULL)
return false;
- return ebl->check_special_symbol (ebl->elf, ehdr, sym, name, destshdr);
+ return ebl->check_special_symbol (ebl->elf, sym, name, destshdr);
}