Re: [PATCH] elflint: Check sh_info for symtab isn't too big.

2020-02-18 Thread Mark Wielaard
On Fri, 2020-02-07 at 18:20 +0100, Mark Wielaard wrote: > The sh_info field of the symtab says how many symbols are in the > section. Make sure at least that many symbols fit in the section. I pushed this to master.

[PATCH] elflint: Check sh_info for symtab isn't too big.

2020-02-07 Thread Mark Wielaard
The sh_info field of the symtab says how many symbols are in the section. Make sure at least that many symbols fit in the section. Reported-by: Ulrich Drepper Signed-off-by: Mark Wielaard --- src/ChangeLog | 4 src/elflint.c | 4 2 files changed, 8 insertions(+) diff --git a/src/Chan