1
0
mirror of https://github.com/minio/mc.git synced 2025-11-12 01:02:26 +03:00

In case of errors not all the cases have content.Content as non nil - fixes #1166

This commit is contained in:
Harshavardhana
2015-10-08 13:59:29 -07:00
parent 1fb55f7685
commit 0175f11388

View File

@@ -90,8 +90,10 @@ func (sl *sortedList) Create(clnt client.Client, id string) *probe.Error {
if content.Content.Type.IsDir() && (content.Content.Type&os.ModeSymlink == os.ModeSymlink) {
continue
}
errorIf(content.Err.Trace(), fmt.Sprintf("Skipping %s.", content.Content.Name))
continue
}
errorIf(content.Err.Trace(), fmt.Sprintf("Skipping %s.", content.Content.Name))
errorIf(content.Err.Trace(), "Skipping unknown file.")
continue
}
return content.Err.Trace()