Fix a missed nil (fixes #846)

This commit is contained in:
Audrius Butkevicius 2014-10-14 20:17:42 +01:00
parent 65acc7c9ad
commit 87780a5b7e

View File

@ -214,7 +214,7 @@ func parseIgnoreFile(fd io.Reader, currentFile string, seen map[string]bool) (*M
}
}
if err != nil {
return nil, err
return &exps, err
}
}