mirror of
https://github.com/minio/minio.git
synced 2025-01-11 23:13:23 -05:00
Fix nil pointer dereference when err is nil
This commit is contained in:
parent
e8d35258f1
commit
0f8021abd1
@ -48,9 +48,11 @@ func Start(path string) (chan<- string, <-chan error, drivers.Driver) {
|
||||
// TODO donut driver should be passed in as Start param and driven by config
|
||||
var err *iodine.Error
|
||||
s.donut, err = donut.NewDonut(path)
|
||||
err = err.Annotate(map[string]string{"path": path})
|
||||
if err != nil {
|
||||
log.Println(err.EmitHumanReadable())
|
||||
err = err.Annotate(map[string]string{"path": path})
|
||||
if err != nil {
|
||||
log.Println(err.EmitHumanReadable())
|
||||
}
|
||||
}
|
||||
|
||||
go start(ctrlChannel, errorChannel, s)
|
||||
|
Loading…
Reference in New Issue
Block a user