fix bitmap reference bug

This commit is contained in:
Ben Johnson 2016-08-09 14:57:37 -06:00
parent d354335374
commit f50fc24749
No known key found for this signature in database
GPG key ID: 81741CD251883081

View file

@ -234,7 +234,7 @@ func (f *Fragment) openCache() error {
// Read in all bitmaps by ID.
// This will cause them to be added to the cache.
for _, bitmapID := range pb.GetBitmapIDs() {
bm := f.bitmap(bitmapID)
f.bitmap(bitmapID)
}
return nil