Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #241 from darrenldl/dev
Browse files Browse the repository at this point in the history
Added missing break
  • Loading branch information
darrenldl authored Jul 7, 2019
2 parents 5fe1463 + 6d8ebde commit ef36e67
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/encode_core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ pub fn encode_file(param: &Param) -> Result<Stats, Error> {
if read_res.len_read < data_size {
*content_len_exc_header = Some(read_res.len_read);
run = false;
break;
}
}
Err(e) => stop_run_forward_error!(run => error_tx_reader => e),
Expand Down

0 comments on commit ef36e67

Please sign in to comment.