Merge pull request #138 from benbjohnson/frame-fragment-lock

Fix unlocked Frame.fragments accessor.
This commit is contained in:
tgruben 2016-11-04 10:56:07 -05:00 committed by GitHub
commit e92228d641

View file

@ -252,7 +252,7 @@ func (i *Index) Fragment(db, frame string, slice uint64) *Fragment {
if f == nil {
return nil
}
return f.fragment(slice)
return f.Fragment(slice)
}
// CreateFragmentIfNotExists returns the fragment for a database, frame & slice.