summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2016-04-09 12:24:00 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2016-04-09 12:24:00 +0000
commitc2dcfbd5d5019d5da7847ea22287988ee1e7c7d8 (patch)
treec8b54427a32e3315f962cd1fd6a20af430c15aac
parent3f5e7aa027e7f0255a475aadc33ca2cc40d4ba1e (diff)
redundant memset(3), from Michael McConville, ok armani@
-rw-r--r--lib/libc/stdlib/malloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index 89c8bbb9007..536cd435d91 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: malloc.c,v 1.185 2016/03/17 17:55:33 mmcc Exp $ */
+/* $OpenBSD: malloc.c,v 1.186 2016/04/09 12:23:59 otto Exp $ */
/*
* Copyright (c) 2008, 2010, 2011 Otto Moerbeek <otto@drijf.net>
* Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org>
@@ -703,7 +703,6 @@ omalloc_grow(struct dir_info *d)
return 1;
STATS_ADD(d->malloc_used, newsize);
- memset(p, 0, newsize);
STATS_ZERO(d->inserts);
STATS_ZERO(d->insert_collisions);
for (i = 0; i < d->regions_total; i++) {