mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-03 20:21:44 +00:00
Return bufio error if set in ParseEnvFile
Return an error value if bufio failed to properly read a token. Avoids running a container with partial environment. Fixes: #14266 Signed-off-by: Matthieu Hauglustaine <matt.hauglustaine@gmail.com>
This commit is contained in:
+1
-1
@@ -40,7 +40,7 @@ func ParseEnvFile(filename string) ([]string, error) {
|
||||
}
|
||||
}
|
||||
}
|
||||
return lines, nil
|
||||
return lines, scanner.Err()
|
||||
}
|
||||
|
||||
var whiteSpaces = " \t"
|
||||
|
||||
Reference in New Issue
Block a user