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 47f824c commit 15a2645Copy full SHA for 15a2645
kernel/core_hook.c
@@ -1317,14 +1317,13 @@ int ksu_handle_setuid(struct cred *new, const struct cred *old)
1317
// filter the mountpoint whose target is `/data/adb`
1318
try_umount("/odm", true, 0);
1319
try_umount("/system", true, 0);
1320
- try_umount("/system_ext", true, 0);
1321
try_umount("/vendor", true, 0);
1322
try_umount("/product", true, 0);
+ try_umount("/system_ext", true, 0);
1323
try_umount("/data/adb/modules", false, MNT_DETACH);
1324
1325
// try umount ksu temp path
1326
try_umount("/debug_ramdisk", false, MNT_DETACH);
1327
- try_umount("/sbin", false, MNT_DETACH);
1328
1329
// try umount hosts file
1330
try_umount("/system/etc/hosts", false, MNT_DETACH);
0 commit comments