Jelajahi Sumber

[DFS_V1]修复 dfs_file_stat 一个 FATFS 根目录会失败的问题 (#7940)

Junjie Wang 1 tahun lalu
induk
melakukan
166c83f372
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      components/dfs/dfs_v1/filesystems/elmfat/ff.c

+ 1 - 1
components/dfs/dfs_v1/filesystems/elmfat/ff.c

@@ -4746,7 +4746,7 @@ FRESULT f_stat (
 		res = follow_path(&dj, path);	/* Follow the file path */
 		if (res == FR_OK) {				/* Follow completed */
 			if (dj.fn[NSFLAG] & NS_NONAME) {	/* It is origin directory */
-				res = FR_INVALID_NAME;
+				fno->fattrib = AM_DIR;
 			} else {							/* Found an object */
 				if (fno) get_fileinfo(&dj, fno);
 			}