We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51543b1 commit 5853b16Copy full SHA for 5853b16
source/netmessage.cpp
@@ -93,7 +93,7 @@ namespace NetMessage
93
94
#elif defined ARCHITECTURE_X86
95
96
- static const uintptr_t CLC_CmdKeyValues_offset = 743;
+ static const uintptr_t CLC_CmdKeyValues_offset = 744;
97
98
static const uintptr_t SVC_CreateStringTable_offset = 567;
99
@@ -436,7 +436,7 @@ namespace NetMessage
436
437
if( instruction.opcode == 0xC7 &&
438
( instruction.flags & F_IMM32 ) != 0 &&
439
- instruction.imm.imm32 >= 10000 &&
+ instruction.imm.imm32 >= 10000 && instruction.imm.imm32 != 0xFFFFFFFF &&
440
( instruction.len == 6 || instruction.len == 7 ) )
441
{
442
*vtable = reinterpret_cast<void **>( hde_getimm( instruction ) );
0 commit comments