TsudaKageyu / minhook

The Minimalistic x86/x64 API Hooking Library for Windows
http://www.codeproject.com/KB/winsdk/LibMinHook.aspx
Other
4.39k stars 892 forks source link

Wrong disassembling #105

Open llxiaoyuan opened 2 years ago

llxiaoyuan commented 2 years ago
uint8_t code[] = {
  0x67,0xA0,0x24,0x28,0x83,0xFA,//mov al,byte ptr ds:[FA832824]
  0x90,0x90,0x90,0x90
};
hde64s hde;
hde64_disasm(code, &hde);
printf("%u\n", hde.len);//10
m417z commented 2 years ago

Looks similar to https://github.com/TsudaKageyu/minhook/issues/96