From 229855e5983881812b21b215346cb990722c6023 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 9 Mar 2018 16:21:22 +0100 Subject: malloc: Revert sense of prev_inuse in comments Reviewed-by: Carlos O'Donell --- malloc/malloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'malloc') diff --git a/malloc/malloc.c b/malloc/malloc.c index 58f9acd..e229181 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1287,13 +1287,13 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ /* Ptr to next physical malloc_chunk. */ #define next_chunk(p) ((mchunkptr) (((char *) (p)) + chunksize (p))) -/* Size of the chunk below P. Only valid if prev_inuse (P). */ +/* Size of the chunk below P. Only valid if !prev_inuse (P). */ #define prev_size(p) ((p)->mchunk_prev_size) -/* Set the size of the chunk below P. Only valid if prev_inuse (P). */ +/* Set the size of the chunk below P. Only valid if !prev_inuse (P). */ #define set_prev_size(p, sz) ((p)->mchunk_prev_size = (sz)) -/* Ptr to previous physical malloc_chunk. Only valid if prev_inuse (P). */ +/* Ptr to previous physical malloc_chunk. Only valid if !prev_inuse (P). */ #define prev_chunk(p) ((mchunkptr) (((char *) (p)) - prev_size (p))) /* Treat space at ptr + offset as a chunk */ -- cgit v1.1