We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1be173c commit c21ad63Copy full SHA for c21ad63
1 file changed
source/yail.cpp
@@ -225,7 +225,7 @@ namespace
225
auto* info = reinterpret_cast<uint16_t*>(block + 1);
226
for (size_t i = 0; i < count; i++, info++)
227
{
228
- if ((*info >> 0x0C) != IMAGE_REL_BASED_DIR64))
+ if (*info >> 0x0C != IMAGE_REL_BASED_DIR64)
229
continue;
230
auto* patch = reinterpret_cast<uintptr_t*>(local_image + block->VirtualAddress + (*info & 0xFFF));
231
*patch += delta;
0 commit comments