Skip to content

Commit

Permalink
Report number of missing bytes when having a complete header and inco…
Browse files Browse the repository at this point in the history
…mplete data
  • Loading branch information
chifflier committed Jan 26, 2022
1 parent 62ff7e8 commit 4c40a35
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

### Thanks

## 6.0.1

### Changed/Fixed

- Report number of missing bytes when having a complete header and incomplete data

## 6.0.0

This release has several major changes:
Expand Down
2 changes: 1 addition & 1 deletion src/ber/multi.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::ber::*;
use crate::error::*;
use nom::bytes::complete::take;
use nom::bytes::streaming::take;
use nom::combinator::{all_consuming, complete, cut, map};
use nom::error::ParseError;
use nom::multi::many0;
Expand Down
2 changes: 1 addition & 1 deletion src/der/multi.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::ber::BerSize;
use crate::der::*;
use crate::error::*;
use nom::bytes::complete::take;
use nom::bytes::streaming::take;
use nom::combinator::{all_consuming, complete, cut, map};
use nom::error::ParseError;
use nom::multi::many0;
Expand Down

0 comments on commit 4c40a35

Please sign in to comment.