From 3ea99e46f3d5abed30d5f8b81be74a9eb557ffa4 Mon Sep 17 00:00:00 2001 From: "goprife@gmail.com" Date: Tue, 21 Aug 2012 10:06:59 +0000 Subject: [PATCH] fix bug in dfs_elm.c the fat->drv to index, because fat->drv is uninitialized in f_mount. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2256 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/dfs/filesystems/elmfat/dfs_elm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dfs/filesystems/elmfat/dfs_elm.c b/components/dfs/filesystems/elmfat/dfs_elm.c index ee3d29962..a8c724d8a 100644 --- a/components/dfs/filesystems/elmfat/dfs_elm.c +++ b/components/dfs/filesystems/elmfat/dfs_elm.c @@ -107,7 +107,7 @@ int dfs_elm_mount(struct dfs_filesystem *fs, unsigned long rwflag, const void *d char drive[8]; DIR * dir; - rt_snprintf(drive, sizeof(drive), "%d:/", fat->drv); + rt_snprintf(drive, sizeof(drive), "%d:/", index); dir = (DIR *)rt_malloc(sizeof(DIR)); if (dir == RT_NULL) return -DFS_STATUS_ENOMEM; -- GitLab