freelist: read all free pages on count overflow

count is not shifted up by start index when taking subslice of free
list, dropping the last entry in the list.
pull/12/head
Anthony Romano 2017-08-08 23:34:56 -07:00
parent f50ad8e90c
commit 03f5e16968
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ func (f *freelist) read(p *page) {
if count == 0 {
f.ids = nil
} else {
ids := ((*[maxAllocSize]pgid)(unsafe.Pointer(&p.ptr)))[idx:count]
ids := ((*[maxAllocSize]pgid)(unsafe.Pointer(&p.ptr)))[idx:idx+count]
f.ids = make([]pgid, len(ids))
copy(f.ids, ids)