Skip to content

Commit

Permalink
Merge pull request capstone-engine#503 from onesbug/master
Browse files Browse the repository at this point in the history
fix:prefix 0x67 missed.
  • Loading branch information
aquynh committed Oct 6, 2015
2 parents e72bd24 + 3388167 commit ee34e72
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arch/X86/X86Disassembler.c
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,7 @@ bool X86_getInstruction(csh ud, const uint8_t *code, size_t code_len,
insn.prefixPresent[0x64] = 0;
insn.prefixPresent[0x65] = 0;
insn.prefixPresent[0x66] = 0;
insn.prefixPresent[0x67] = 0;
insn.prefixPresent[0xf0] = 0;
insn.prefixPresent[0xf2] = 0;
insn.prefixPresent[0xf3] = 0;
Expand Down

0 comments on commit ee34e72

Please sign in to comment.