Merge pull request #1187 from filecoin-project/fix/rle-bitcap

Fix small bug in RLE
This commit is contained in:
Jakub Sztandera 2020-01-30 15:49:38 -08:00 committed by GitHub
commit e441b48ea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ func (bv *wbitvec) Out() []byte {
} }
if bv.bitCap > 8 { if bv.bitCap > 8 {
// if we store some needed bits in second byte, save them also // if we store some needed bits in second byte, save them also
bv.buf = append(bv.buf, byte(bv.bitCap>>8)) bv.buf = append(bv.buf, byte(bv.bits>>8))
bv.index++ bv.index++
bv.bits = bv.bits - 8 bv.bits = bv.bits - 8
} }

View File

@ -8,8 +8,8 @@ import (
func Sum(a, b RunIterator) (RunIterator, error) { func Sum(a, b RunIterator) (RunIterator, error) {
it := addIt{a: a, b: b} it := addIt{a: a, b: b}
it.prep()
return &it, nil return &it, it.prep()
} }
type addIt struct { type addIt struct {