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:
Matthieu Hauglustaine 2015-07-01 16:54:20 +02:00 committed by Vincent Demeester
parent 0c721e1ad5
commit 0ede41afbd
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ func ParseEnvFile(filename string) ([]string, error) {
} }
} }
} }
return lines, nil return lines, scanner.Err()
} }
var whiteSpaces = " \t" var whiteSpaces = " \t"