Check result of read_until, and return Error if 0, which indicates EOF was found before delimeter.

This commit is contained in:
Reid Wagner
2019-02-02 11:59:32 -08:00
committed by David Peter
parent f3f9f10f05
commit 61e888de7f
3 changed files with 15 additions and 9 deletions

View File

@ -43,6 +43,7 @@ impl<'b> Controller<'b> {
for input_file in &self.config.files {
match input_file.get_reader(&stdin) {
Err(Error(ErrorKind::ImmediateEOF, _)) => (),
Err(error) => {
handle_error(&error);
no_errors = false;