Increment version

This commit is contained in:
Mike Farah
2021-07-16 10:09:12 +10:00
parent b76c9f6e57
commit 2f0fe8aa13
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ func readStream(filename string) (io.Reader, bool, error) {
} else {
// ignore CWE-22 gosec issue - that's more targetted for http based apps that run in a public directory,
// and ensuring that it's not possible to give a path to a file outside thar directory.
reader, err := os.Open(filename)
reader, err := os.Open(filename) // #nosec
if err != nil {
return nil, false, err
}