summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/malloc.c
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2017-04-18 15:46:44 +0000
committerotto <otto@openbsd.org>2017-04-18 15:46:44 +0000
commita115f96b48156532492bd77cd1051512cef97352 (patch)
treed8324aefc537543a547909e3a30a53864ab718bf /lib/libc/stdlib/malloc.c
parentAdd a format for number of bytes writtent to client, useful for debugging. (diff)
downloadwireguard-openbsd-a115f96b48156532492bd77cd1051512cef97352.tar.xz
wireguard-openbsd-a115f96b48156532492bd77cd1051512cef97352.zip
don't forget to fill in canary bytes for posix_memalign(3); reported by
and ok jeremy@
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r--lib/libc/stdlib/malloc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index 5b92b56eb48..4e5176f71ee 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: malloc.c,v 1.222 2017/04/17 16:36:35 otto Exp $ */
+/* $OpenBSD: malloc.c,v 1.223 2017/04/18 15:46:44 otto Exp $ */
/*
* Copyright (c) 2008, 2010, 2011, 2016 Otto Moerbeek <otto@drijf.net>
* Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org>
@@ -2018,6 +2018,9 @@ omemalign(struct dir_info *pool, size_t alignment, size_t sz, int zero_fill, voi
else
memset(p, SOME_JUNK, psz - mopts.malloc_guard);
}
+ else if (mopts.chunk_canaries)
+ fill_canary(p, sz - mopts.malloc_guard,
+ psz - mopts.malloc_guard);
return p;
}