Re: [PATCH] findtextrel: do not use unbound alloca

2021-09-08 Thread Mark Wielaard
Hi Dmitry, On Mon, Sep 06, 2021 at 06:00:00PM +, Dmitry V. Levin wrote: > This fixes the following compilation warning: > > findtextrel.c:184:1: warning: stack usage might be unbounded [-Wstack-usage=] And it simplifies the code a lot IMHO. Looks good, please apply. Thanks, Mark

[PATCH] findtextrel: do not use unbound alloca

2021-09-06 Thread Dmitry V. Levin
This fixes the following compilation warning: findtextrel.c:184:1: warning: stack usage might be unbounded [-Wstack-usage=] Signed-off-by: Dmitry V. Levin --- src/ChangeLog | 5 + src/Makefile.am | 1 - src/findtextrel.c | 31 +-- 3 files changed, 14 inse