Remove non-exclusive access to ChunkList field

pull/1004/head
Junegunn Choi 7 years ago
parent 99927c7071
commit a56489bc7f
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -75,6 +75,7 @@ func (cl *ChunkList) Snapshot() ([]*Chunk, int) {
cl.mutex.Lock()
ret := make([]*Chunk, len(cl.chunks))
count := cl.count
copy(ret, cl.chunks)
// Duplicate the last chunk
@ -84,5 +85,5 @@ func (cl *ChunkList) Snapshot() ([]*Chunk, int) {
}
cl.mutex.Unlock()
return ret, cl.count
return ret, count
}

Loading…
Cancel
Save