malloc: Check for integer overflow in valloc.
authorWill Newton <will.newton@linaro.org>
Fri, 16 Aug 2013 10:59:37 +0000 (11:59 +0100)
committerWill Newton <will.newton@linaro.org>
Wed, 11 Sep 2013 08:41:04 +0000 (09:41 +0100)
commit55e17aadc1ef17a1df9626fb0e9fba290ece3331
tree535a0430dd472b5e4059b71b1109312a5d3a59a9
parent1159a193696ad48ec86e5895f6dee3e539619c0e
malloc: Check for integer overflow in valloc.

A large bytes parameter to valloc could cause an integer overflow
and corrupt allocator internals. Check the overflow does not occur
before continuing with the allocation.

ChangeLog:

2013-09-11  Will Newton  <will.newton@linaro.org>

[BZ #15856]
* malloc/malloc.c (__libc_valloc): Check the value of bytes
does not overflow.
ChangeLog
malloc/malloc.c