corresponding change for BII sigsegv.cpp

This commit is contained in:
rakslice 2020-12-01 23:33:38 -08:00
parent 85f8971d8d
commit f198632834
1 changed files with 9 additions and 0 deletions

View File

@ -1018,6 +1018,15 @@ static bool ix86_skip_instruction(SIGSEGV_REGISTER_TYPE * regs)
transfer_size = SIZE_WORD;
}
#if defined(__x86_64__) || defined(_M_X64)
// Address size override
if (*eip == 0x67) {
// 32-bit address
eip++;
len++;
}
#endif
// REX prefix
#if defined(__x86_64__) || defined(_M_X64)
struct rex_t {