Browse Source

explain a bit more what's going on for stupid me.

okay otto@
OPENBSD_5_6
espie 10 years ago
parent
commit
41f1e88953
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/lib/libc/stdlib/malloc.c

+ 4
- 1
src/lib/libc/stdlib/malloc.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: malloc.c,v 1.156 2014/04/23 05:43:25 otto Exp $ */
/* $OpenBSD: malloc.c,v 1.157 2014/04/23 10:47:15 espie Exp $ */
/* /*
* Copyright (c) 2008, 2010, 2011 Otto Moerbeek <otto@drijf.net> * Copyright (c) 2008, 2010, 2011 Otto Moerbeek <otto@drijf.net>
* Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org>
@ -1388,6 +1388,9 @@ realloc(void *ptr, size_t size)
} }
/* this is sqrt(SIZE_MAX+1), as s1*s2 <= SIZE_MAX
* if both s1 < MUL_NO_OVERFLOW and s2 < MUL_NO_OVERFLOW
*/
#define MUL_NO_OVERFLOW (1UL << (sizeof(size_t) * 4)) #define MUL_NO_OVERFLOW (1UL << (sizeof(size_t) * 4))
void * void *


Loading…
Cancel
Save