diff options
| author | Patrick Steinhardt <[email protected]> | 2015-04-23 10:02:57 +0200 |
|---|---|---|
| committer | Patrick Steinhardt <[email protected]> | 2015-05-22 09:02:24 +0200 |
| commit | bde012f3d478752787bab0978e0bfaf5deefa42b (patch) | |
| tree | 3258390a1061eed376bcaeb17162f401d765fa9d | |
| parent | 7750e85fd1ff1006a28a5e292c9bc7ce3e12b586 (diff) | |
handles: correctly initialize all members
| -rw-r--r-- | handles.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -16,6 +16,7 @@ type HandleList struct { func NewHandleList() *HandleList { return &HandleList{ handles: make([]interface{}, 5), + set: make(map[uintptr]bool), } } |
