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 a690723 commit 99e4999Copy full SHA for 99e4999
kernel/core_hook.c
@@ -1298,14 +1298,13 @@ int ksu_handle_setuid(struct cred *new, const struct cred *old)
1298
// filter the mountpoint whose target is `/data/adb`
1299
try_umount("/odm", true, 0);
1300
try_umount("/system", true, 0);
1301
- try_umount("/system_ext", true, 0);
1302
try_umount("/vendor", true, 0);
1303
try_umount("/product", true, 0);
+ try_umount("/system_ext", true, 0);
1304
try_umount("/data/adb/modules", false, MNT_DETACH);
1305
1306
// try umount ksu temp path
1307
try_umount("/debug_ramdisk", false, MNT_DETACH);
1308
- try_umount("/sbin", false, MNT_DETACH);
1309
1310
// try umount hosts file
1311
try_umount("/system/etc/hosts", false, MNT_DETACH);
0 commit comments