mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-05 20:52:50 +08:00
avoid index out of slice range
This commit is contained in:
parent
313fd17ae4
commit
12f8251d32
@ -208,7 +208,7 @@ func (s *SingleChunkCacher) readChunkAt(buf []byte, offset int64) (int, error) {
|
||||
return 0, s.err
|
||||
}
|
||||
|
||||
if len(s.data) == 0 {
|
||||
if len(s.data) <= int(offset) {
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user