From da7632470d40f0629d902e97804817561cb05514 Mon Sep 17 00:00:00 2001 From: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com> Date: Fri, 13 Jun 2025 19:49:33 +0800 Subject: [PATCH] =?UTF-8?q?kernel:=20=E4=BD=BF=E7=94=A8=20try=5Fumount=20?= =?UTF-8?q?=E6=9B=BF=E6=8D=A2=20ksu=5Ftry=5Fumount=20=E4=BB=A5=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E5=8D=B8=E8=BD=BD=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/core_hook.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/core_hook.c b/kernel/core_hook.c index 9ec0cba5..7bdcfba4 100644 --- a/kernel/core_hook.c +++ b/kernel/core_hook.c @@ -1175,11 +1175,11 @@ out_ksu_try_umount: try_umount("/sbin", false, MNT_DETACH); // try umount hosts file - ksu_try_umount("/system/etc/hosts", false, MNT_DETACH); + try_umount("/system/etc/hosts", false, MNT_DETACH); // try umount lsposed dex2oat bins - ksu_try_umount("/apex/com.android.art/bin/dex2oat64", false, MNT_DETACH); - ksu_try_umount("/apex/com.android.art/bin/dex2oat32", false, MNT_DETACH); + try_umount("/apex/com.android.art/bin/dex2oat64", false, MNT_DETACH); + try_umount("/apex/com.android.art/bin/dex2oat32", false, MNT_DETACH); #endif return 0; }