Skip to content

Commit

Permalink
Fix missing x86 arch
Browse files Browse the repository at this point in the history
  • Loading branch information
nsurbay committed Mar 10, 2022
1 parent bf27b1f commit 103723b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/QBDIPreload/src/X86/linux_X86.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ void removeConflictModule(VMInstanceRef vm, qbdi_MemoryMap *modules,
for (i = 0; i < size; i++) {
if ((modules[i].permission & QBDI_PF_EXEC) &&
(strstr(modules[i].name, "libc-2.") ||
strstr(modules[i].name, "libc.so.") ||
strstr(modules[i].name, "ld-2.") ||
strstr(modules[i].name, "ld-linux-.") ||
strstr(modules[i].name, "libpthread-") ||
strstr(modules[i].name, "libcofi") || modules[i].name[0] == 0)) {
qbdi_removeInstrumentedRange(vm, modules[i].start, modules[i].end);
Expand Down

0 comments on commit 103723b

Please sign in to comment.