Merge branch 'copy-bugfix' into develop

This commit is contained in:
siddontang 2014-11-27 20:51:21 +08:00
parent 69aaba8509
commit 026a72b58e
3 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ func line(prompt string) (string, error) {
defer C.free(unsafe.Pointer(resultCString))
if resultCString == nil {
return "", errors.New("quited by a signal")
return "", errors.New("exiting due to signal")
}
result := C.GoString(resultCString)

View File

@ -196,14 +196,15 @@ func (s *FileStore) storeLog(l *Log) error {
func (s *FileStore) PurgeExpired(n int64) error {
s.rm.Lock()
purges := []*tableReader{}
var purges []*tableReader
t := uint32(time.Now().Unix() - int64(n))
for i, r := range s.rs {
if r.lastTime > t {
purges = s.rs[0:i]
s.rs = s.rs[i:]
purges = append([]*tableReader{}, s.rs[0:i]...)
n := copy(s.rs, s.rs[i:])
s.rs = s.rs[0:n]
break
}
}

View File

@ -137,8 +137,7 @@ func (s *snapshotStore) purge(create bool) {
}
if num > 0 {
names = s.names[0:num]
names = append([]string{}, s.names[0:num]...)
n := copy(s.names, s.names[num:])
s.names = s.names[0:n]
}