Merge pull request #637 from mtolman/master

Fix for issue #635
This commit is contained in:
Chris Lu 2018-04-17 12:53:38 -07:00 committed by GitHub
commit 230258702f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ func (v *Volume) Size() int64 {
return stat.Size()
}
glog.V(0).Infof("Failed to read file size %s %v", v.dataFile.Name(), e)
return -1
return 0 // -1 causes integer overflow and the volume to become unwritable.
}
// Close cleanly shuts down this volume