From eeb4cdad20a478df7080f581c1eb59c5702c6f1d Mon Sep 17 00:00:00 2001 From: angryproton Date: Thu, 25 Dec 2025 22:50:13 +0800 Subject: [PATCH] =?UTF-8?q?[FIX][DFSv2][ELMFAT]=E8=A7=A3=E5=86=B3dfs=5Felm?= =?UTF-8?q?=5Funlink=E5=9C=A8FF=5FVOLUMES=E4=B8=BA1=E6=97=B6=E8=B5=8B?= =?UTF-8?q?=E5=80=BCdrivers=5Ffn=E5=BC=95=E7=94=A8=E6=9C=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E5=8F=98=E9=87=8F=E5=AF=BC=E8=87=B4=E7=BC=96=E8=AF=91?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/dfs/dfs_v2/filesystems/elmfat/dfs_elm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dfs/dfs_v2/filesystems/elmfat/dfs_elm.c b/components/dfs/dfs_v2/filesystems/elmfat/dfs_elm.c index 625a7cec5e1..8b1f8c23d0c 100644 --- a/components/dfs/dfs_v2/filesystems/elmfat/dfs_elm.c +++ b/components/dfs/dfs_v2/filesystems/elmfat/dfs_elm.c @@ -783,7 +783,7 @@ int dfs_elm_unlink(struct dfs_dentry *dentry) rt_snprintf(drivers_fn, 256, "%d:%s", vol, dentry->pathname); #else const char *drivers_fn; - drivers_fn = path; + drivers_fn = dentry->pathname; #endif result = f_unlink(drivers_fn);