[PATCH v3] [BZ #15855] malloc: Check for integer overflow in pvalloc.
Siddhesh Poyarekar
siddhesh.poyarekar@gmail.com
Tue Sep 10 13:35:00 GMT 2013
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
More information about the Libc-alpha
mailing list