mirror of
https://github.com/minio/minio.git
synced 2025-01-23 12:43:16 -05:00
parent
76c511c9fe
commit
a8fdd04e62
@ -174,13 +174,14 @@ func (xl XL) ReadFile(volume, path string, startOffset int64) (io.ReadCloser, er
|
||||
|
||||
// Verify if the offset is right for the block, if not move to
|
||||
// the next block.
|
||||
|
||||
if startOffset > 0 {
|
||||
startOffset = startOffset - int64(len(dataBlocks))
|
||||
if startOffset > int64(len(dataBlocks)) {
|
||||
// Start offset is greater than or equal to zero, skip the dataBlocks.
|
||||
if startOffset >= 0 {
|
||||
continue
|
||||
}
|
||||
// Fetch back the overflow offset, to skip from the current data
|
||||
// blocks.
|
||||
// Now get back the remaining offset if startOffset is negative.
|
||||
startOffset = startOffset + int64(len(dataBlocks))
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user