Skip to content

Commit

Permalink
changelog: update changelog; add fixme about parsing strictness
Browse files Browse the repository at this point in the history
  • Loading branch information
m4b committed Jan 28, 2018
1 parent 7a8f265 commit e76101f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ I'm sorry, I will try my best to ease breaking changes. We're almost to 1.0, do
## [Unreleased]
### Changed
### Added
- mach.segments: do not panic on bad internal data bounds: https://github.com/m4b/goblin/issues/74
- mach: correctly add weak dylibs to import libs: https://github.com/m4b/goblin/issues/73

## [0.0.14] - 2018-1-15
Expand Down
1 change: 1 addition & 0 deletions src/mach/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ impl<'a> MachO<'a> {
debug!("{} - {:?}", i, cmd);
match cmd.command {
load_command::CommandVariant::Segment32(command) => {
// FIXME: we may want to be less strict about failure here, and just return an empty segment to allow parsing to continue?
segments.push(segment::Segment::from_32(bytes, &command, cmd.offset, ctx)?)
},
load_command::CommandVariant::Segment64(command) => {
Expand Down

0 comments on commit e76101f

Please sign in to comment.