2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 07:00:49 +00:00

Ignore ErrUnexpectedEOF for io.ReadFull

This commit is contained in:
Alexander Neumann 2014-11-23 21:49:57 +01:00
parent ba20ed6ef7
commit b1923063fe

View File

@ -167,7 +167,7 @@ func (arch *Archiver) SaveFile(node *Node) error {
buf := GetChunkBuf("blob single file")
defer FreeChunkBuf("blob single file", buf)
n, err := io.ReadFull(file, buf)
if err != nil {
if err != nil && err != io.ErrUnexpectedEOF {
return err
}