remove: futile maps hiding

This commit removes the maps hiding, as it not only breaks behavior compatibility with Magisk Zygisk (original), but also can break some modules because of that. It doesn't provide any improved hiding in slightly better detections and makes the codebase more complex.
This commit is contained in:
ThePedroo
2025-07-15 03:41:48 -03:00
parent 2dfa221287
commit 872ba693a1
3 changed files with 6 additions and 40 deletions

View File

@@ -24,6 +24,6 @@ void entry(void* addr, size_t size, const char* path) {
hook_functions();
void *module_addrs[1] = { addr };
clean_trace(path, module_addrs, 1, 1, 0, false);
clean_trace(path, module_addrs, 1, 1, 0);
send_seccomp_event();
}