Skip to content

Commit

Permalink
Make MALLOC_STATS compile again; noted by Omar Polo and Joe Nelson
Browse files Browse the repository at this point in the history
  • Loading branch information
omoerbeek committed Jul 23, 2021
1 parent d3e4a70 commit 205367e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/libc/stdlib/malloc.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $OpenBSD: malloc.c,v 1.270 2021/04/09 06:05:21 otto Exp $ */
/* $OpenBSD: malloc.c,v 1.271 2021/07/23 18:04:28 otto Exp $ */
/*
* Copyright (c) 2008, 2010, 2011, 2016 Otto Moerbeek <[email protected]>
* Copyright (c) 2012 Matthew Dempsky <[email protected]>
Expand Down Expand Up @@ -1610,7 +1610,7 @@ orealloc(struct dir_info **argpool, void *p, size_t newsz, void *f)
}
if (munmap((char *)r->p + rnewsz, roldsz - rnewsz))
wrterror(pool, "munmap %p", (char *)r->p + rnewsz);
STATS_SUB(d->malloc_used, roldsz - rnewsz);
STATS_SUB(pool->malloc_used, roldsz - rnewsz);
r->size = gnewsz;
if (MALLOC_MOVE_COND(gnewsz)) {
void *pp = MALLOC_MOVE(r->p, gnewsz);
Expand Down

0 comments on commit 205367e

Please sign in to comment.