Commit edcfd3f0 authored by swift_gan's avatar swift_gan Committed by swift_gan

[XposedCompat]update native hook lib

parent 03d6721e
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
void* NewGetOatQuickMethodHeader(void* artMethod, uintptr_t pc) { void* NewGetOatQuickMethodHeader(void* artMethod, uintptr_t pc) {
std::set<void*>::iterator it = hookMethods.find(artMethod); std::set<void*>::iterator it = hookMethods.find(artMethod);
if (it != hookMethods.end()) { if (it != hookMethods.end()) {
LOGE("skip GetOatQuickMethodHeader"); LOGW("skip GetOatQuickMethodHeader");
return nullptr; return nullptr;
} }
return GetOatQuickMethodHeaderBackup(artMethod, pc); return GetOatQuickMethodHeaderBackup(artMethod, pc);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment