diff options
-rw-r--r-- | CHANGELOG | 5 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/long_mode/display.rs | 3 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,8 @@ +## 0.2.2 +* fix rendering error in `ShowContextual` impl with `&[Option<String>]` overrides + - would in some circumstances incorrectly print stale data if an `Instruction` was reused for decoding. + no impact on logical correctness, but certainly made for awkward disassembly in some cases. + ## 0.2.1 * update `yaxpeax-arch` dep to 0.0.5 - no external-facing changes for this, but `yaxpeax-arch 0.0.5` uses `crossterm` for cross-platform terminal coloring @@ -1,7 +1,7 @@ [package] name = "yaxpeax-x86" -version = "0.2.1" +version = "0.2.2" authors = [ "iximeow <me@iximeow.net>" ] license = "0BSD" repository = "http://git.iximeow.net/yaxpeax-x86/" diff --git a/src/long_mode/display.rs b/src/long_mode/display.rs index 1d68719..f84ff7a 100644 --- a/src/long_mode/display.rs +++ b/src/long_mode/display.rs @@ -2820,7 +2820,8 @@ impl <T: fmt::Write, Y: YaxColors> ShowContextual<u64, [Option<alloc::string::St x.colorize(colors, out)?; } }; - for i in 1..4 { + for i in 1..self.operand_count { + let i = i as usize; match self.opcode { Opcode::MOVSX_b | Opcode::MOVZX_b => { |