2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-27 04:43:30 +00:00

fs.DeviceID(): Return errors when fi is nil

This commit is contained in:
Alexander Neumann 2016-11-05 11:52:53 +01:00
parent 6b88d3b5d0
commit c5bc802ff0

View File

@ -12,10 +12,19 @@ import (
// DeviceID extracts the device ID from an os.FileInfo object by casting it
// to syscall.Stat_t
func DeviceID(fi os.FileInfo) (deviceID uint64, err error) {
if fi == nil {
return 0, errors.New("unable to determine device: fi is nil")
}
if fi.Sys() == nil {
return 0, errors.New("unable to determine device: fi.Sys() is nil")
}
if st, ok := fi.Sys().(*syscall.Stat_t); ok {
// st.Dev is uint32 on Darwin and uint64 on Linux. Just cast
// everything to uint64.
return uint64(st.Dev), nil
}
return 0, errors.New("Could not cast to syscall.Stat_t")
}