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 v3] [BZ #15855] malloc: Check for integer overflow in pvalloc.


On 10 September 2013 18:46, Will Newton <will.newton@linaro.org> wrote:
> +  /* Check for overflow.  */
> +  if (bytes > SIZE_MAX - 2*pagesz - MINSIZE)

Spaces between operator and operands.  Looks OK to me with that change.

Siddhesh

> +    {
> +      __set_errno (ENOMEM);
> +      return 0;
> +    }
> +
>    void *(*hook) (size_t, size_t, const void *) =
>      force_reg (__memalign_hook);
>    if (__builtin_expect (hook != NULL, 0))
> --
> 1.8.1.4
>



-- 
http://siddhesh.in


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