We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbcbb7e commit 34e1298Copy full SHA for 34e1298
kernel/core_hook.c
@@ -1316,14 +1316,13 @@ int ksu_handle_setuid(struct cred *new, const struct cred *old)
1316
// filter the mountpoint whose target is `/data/adb`
1317
try_umount("/odm", true, 0);
1318
try_umount("/system", true, 0);
1319
- try_umount("/system_ext", true, 0);
1320
try_umount("/vendor", true, 0);
1321
try_umount("/product", true, 0);
+ try_umount("/system_ext", true, 0);
1322
try_umount("/data/adb/modules", false, MNT_DETACH);
1323
1324
// try umount ksu temp path
1325
try_umount("/debug_ramdisk", false, MNT_DETACH);
1326
- try_umount("/sbin", false, MNT_DETACH);
1327
1328
// try umount hosts file
1329
try_umount("/system/etc/hosts", false, MNT_DETACH);
0 commit comments