unstrip: Add ELF_CHECK to make sure gelf_getehdr () doesn't return NULL.
authorMark Wielaard <mark@klomp.org>
Fri, 2 Nov 2018 22:17:05 +0000 (23:17 +0100)
committerMark Wielaard <mark@klomp.org>
Fri, 2 Nov 2018 22:17:05 +0000 (23:17 +0100)
Signed-off-by: Mark Wielaard <mark@klomp.org>
src/ChangeLog
src/unstrip.c

index 758534d..ca1533d 100644 (file)
@@ -1,3 +1,8 @@
+2018-11-02  Mark Wielaard  <mark@klomp.org>
+
+       * unstrip.c (copy_elf): Add ELF_CHECK to make sure gelf_getehdr ()
+       doesn't return NULL.
+
 2018-10-18  Mark Wielaard  <mark@klomp.org>
 
        * elflint.c (check_note_data): Recognize NT_GNU_PROPERTY_TYPE_0.
index 32da89d..3495b1d 100644 (file)
@@ -245,6 +245,7 @@ copy_elf (Elf *outelf, Elf *inelf)
 
   GElf_Ehdr ehdr_mem;
   GElf_Ehdr *ehdr = gelf_getehdr (inelf, &ehdr_mem);
+  ELF_CHECK (ehdr != NULL, _("cannot get ELF header: %s"));
   if (shstrndx < SHN_LORESERVE)
     ehdr->e_shstrndx = shstrndx;
   else