[libomptarget] Add missing elf_end call in elf_common.c

Summary:
[libomptarget] Add missing elf_end call in elf_common.c
Noticed when reviewing D76843.

Reviewers: simoll, jdoerfert, efocht, AndreyChurbanov, grokos, manorom

Reviewed By: grokos

Subscribers: openmp-commits

Tags: #openmp

Differential Revision: https://reviews.llvm.org/D76874
This commit is contained in:
Jon Chesterfield 2020-03-26 19:07:31 +00:00 committed by JonChesterfield
parent 8099e0fe82
commit 856c995436

View File

@ -45,6 +45,7 @@ static inline int32_t elf_check_machine(__tgt_device_image *image,
// Check if ELF is the right kind.
if (elf_kind(e) != ELF_K_ELF) {
DP("Unexpected ELF type!\n");
elf_end(e);
return 0;
}
Elf64_Ehdr *eh64 = elf64_getehdr(e);