Browse Source

Merge pull request #637 from mtolman/master

Fix for issue #635
pull/642/head
Chris Lu 7 years ago
committed by GitHub
parent
commit
230258702f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      weed/storage/volume.go

2
weed/storage/volume.go

@ -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

Loading…
Cancel
Save