Remove setTrust race workaround
This commit is contained in:
parent
617c6ab317
commit
7a45723eda
|
|
@ -21,14 +21,7 @@ public class OpenDexFileHooker extends XC_MethodHook {
|
|||
}
|
||||
while (classLoader != null) {
|
||||
if (classLoader == XposedHelpers.class.getClassLoader()) {
|
||||
// it may fail because of race, try more
|
||||
for (int i = 0; i < 3; i++) {
|
||||
try {
|
||||
HookBridge.setTrusted(param.getResult());
|
||||
break;
|
||||
} catch (SecurityException ignored) {
|
||||
}
|
||||
}
|
||||
return;
|
||||
} else {
|
||||
classLoader = classLoader.getParent();
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 03517ca86d6517c0e468055240e3c2e115f76180
|
||||
Subproject commit 9c33903c87a240ae38dbf7fdf49c0748addd073d
|
||||
Loading…
Reference in New Issue