diff options
Diffstat (limited to 'src/runtime/mfixalloc.go')
| -rw-r--r-- | src/runtime/mfixalloc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/mfixalloc.go b/src/runtime/mfixalloc.go index 0d3d895113..fe4b0fcf2a 100644 --- a/src/runtime/mfixalloc.go +++ b/src/runtime/mfixalloc.go @@ -72,7 +72,7 @@ func (f *fixalloc) alloc() unsafe.Pointer { f.list = f.list.next f.inuse += f.size if f.zero { - memclr(v, f.size) + memclrNoHeapPointers(v, f.size) } return v } |
