Commit 7a9968f9 authored by WhisperRain's avatar WhisperRain Committed by Ian Lance Taylor

container/heap: avoid memory leak in example

Set element in slice to nil avoiding memory leak.

Change-Id: I9dbef9a0466407011e326725d3a0b681cd815389
GitHub-Last-Rev: 1bae5d375876a7f146eb04c2a5ba88d079264eb3
GitHub-Pull-Request: golang/go#30386
Reviewed-on: https://go-review.googlesource.com/c/163601
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarKeith Randall <khr@golang.org>
parent e609bd37
...@@ -45,6 +45,7 @@ func (pq *PriorityQueue) Pop() interface{} { ...@@ -45,6 +45,7 @@ func (pq *PriorityQueue) Pop() interface{} {
old := *pq old := *pq
n := len(old) n := len(old)
item := old[n-1] item := old[n-1]
old[n-1] = nil // avoid memory leak
item.index = -1 // for safety item.index = -1 // for safety
*pq = old[0 : n-1] *pq = old[0 : n-1]
return item return item
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment