[PATCH v2 1/7] malloc: Add check for top size corruption.
Andreas Schwab
schwab@suse.de
Tue Nov 7 15:53:00 GMT 2017
On Nov 07 2017, Istvan Kurucsai <pistukem@gmail.com> wrote:
> diff --git a/malloc/malloc.c b/malloc/malloc.c
> index f94d51c..4a30c42 100644
> --- a/malloc/malloc.c
> +++ b/malloc/malloc.c
> @@ -4078,6 +4078,10 @@ _int_malloc (mstate av, size_t bytes)
>
> if ((unsigned long) (size) >= (unsigned long) (nb + MINSIZE))
> {
> + if (__glibc_unlikely ((unsigned long) (size) >
> + (unsigned long) (av->system_mem)))
Line break before operator, not after. Redundant parens.
> + malloc_printerr("malloc(): corrupted top chunk");
Space before paren.
Andreas.
--
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."
More information about the Libc-alpha
mailing list