From fd2dfebd88b91b4b09aa5ed4349dc05465add667 Mon Sep 17 00:00:00 2001 From: Jan Ziak <0xe2.0x9a.0x9b@gmail.com> Date: Wed, 13 Jun 2012 16:23:53 -0400 Subject: [PATCH] [release-branch.go1] runtime: fix counting of free objects MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ««« backport 393bec50494e runtime: fix counting of free objects R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6206056 »»» --- src/pkg/runtime/malloc.goc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pkg/runtime/malloc.goc b/src/pkg/runtime/malloc.goc index fbdd6bb021..9ae3a9d619 100644 --- a/src/pkg/runtime/malloc.goc +++ b/src/pkg/runtime/malloc.goc @@ -154,6 +154,7 @@ runtime·free(void *v) c->local_by_size[sizeclass].nfree++; runtime·MCache_Free(c, v, sizeclass, size); } + c->local_nfree++; c->local_alloc -= size; if(prof) runtime·MProf_Free(v, size); -- 2.50.0