swarm/storage: call size before seek-from-end

This commit is contained in:
aron 2016-12-20 16:03:19 +01:00
parent 0ee796632a
commit 34cc456271

View file

@ -483,8 +483,11 @@ func (s *LazyChunkReader) Seek(offset int64, whence int) (int64, error) {
case 1: case 1:
offset += s.off offset += s.off
case 2: case 2:
if s.chunk == nil { if s.chunk == nil { //seek from the end requires rootchunk for size. call Size first
return 0, fmt.Errorf("seek from the end requires rootchunk for size. call Size first") _, err := s.Size(nil)
if err != nil {
return 0, fmt.Errorf("can't get size: %v", err)
}
} }
offset += s.chunk.Size offset += s.chunk.Size
} }