diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-05-12 15:08:10 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-05-12 15:08:10 +0000 |
| commit | 87b1831f1d285e870733115a47e4fb2e11331aac (patch) | |
| tree | ef5a6109587e8893073d934222b11960e64d8313 /sys/kern/link_elf_obj.c | |
| parent | 1964fb9ba2af97bae24cd66539da5057a007fdee (diff) | |
Notes
Diffstat (limited to 'sys/kern/link_elf_obj.c')
| -rw-r--r-- | sys/kern/link_elf_obj.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/kern/link_elf_obj.c b/sys/kern/link_elf_obj.c index 1d27f735294d..31a6c79f00fa 100644 --- a/sys/kern/link_elf_obj.c +++ b/sys/kern/link_elf_obj.c @@ -646,6 +646,9 @@ link_elf_load_file(linker_class_t cls, const char* filename, error = ENOEXEC; goto out; } + /* + * XXX: We just trust they come in right order ?? + */ segs[nsegs] = phdr; ++nsegs; break; @@ -671,6 +674,11 @@ link_elf_load_file(linker_class_t cls, const char* filename, error = ENOEXEC; goto out; } + if (nsegs != 2) { + link_elf_error("Too few sections"); + error = ENOEXEC; + goto out; + } /* * Allocate the entire address space of the object, to stake out our |
