Procházet zdrojové kódy

fix all_hooked

master
aaaaaa aaaaaaa před 6 roky
rodič
revize
97f6ad47fe
1 změnil soubory, kde provedl 11 přidání a 2 odebrání
  1. +11
    -2
      tester/abstracthook.h

+ 11
- 2
tester/abstracthook.h Zobrazit soubor

@@ -17,7 +17,16 @@ public:
bool tail_recursion;
};
public:
AbstractHookEngine(const char* name) : name_(name) {
AbstractHookEngine(const char* name) :
name_(name),
small_(false),
branch(false),
rip_relative(false),
avx(false),
rdrand(false),
loop(false),
tail_recursion(false)
{

}

@@ -25,7 +34,7 @@ public:
virtual bool unhook_all() = 0;

bool all_hooked() {
return small_ && branch && rip_relative;
return small_ && branch && rip_relative && avx && rdrand && loop && tail_recursion;
}

const char* name() {

Načítá se…
Zrušit
Uložit