This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 2/2 v1.1][BZ #14547] Fix CVE-2012-4412


On 21 August 2013 21:38, Ondřej Bílka <neleai@seznam.cz> wrote:
> Is that goto needed? I would add conditions to if like following:
>
> if (!MIN (s1len, s2len) > size_max
>     && !MAX (s1len, s2len) > size_max - MIN (s1len, s2len)
>     && !__libc_use_alloca ((s1len + s2len) * (sizeof (int32_t) + 1)))
>
> There I assume that if below is single block, otherwise I would add new block.

It eliminates nesting and makes code easier to read.  Not all goto is evil.

Siddhesh
-- 
http://siddhesh.in


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]