We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ea9d9 commit 31bbf3fCopy full SHA for 31bbf3f
decode/decode.go
@@ -293,7 +293,7 @@ func (d *Decoder) Search() (indexes []int) {
293
for {
294
idx = d.preambleFinder.next(slice[offset:])
295
if idx != -1 {
296
- indexes = append(indexes, (offset+idx)*d.Cfg.SymbolLength2+symbolOffset)
+ indexes = append(indexes, (offset+idx)*d.DecCfg.SymbolLength2+symbolOffset)
297
offset += idx + 1
298
} else {
299
break
0 commit comments