未验证 提交 4d854ba5 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #1049 from TanekLiang/romfs_open_fixed

[DFS] fix ROMFS get root directory bug
......@@ -191,8 +191,10 @@ int dfs_romfs_open(struct dfs_fd *file)
rt_size_t size;
struct romfs_dirent *dirent;
struct romfs_dirent *root_dirent;
struct dfs_filesystem *fs;
root_dirent = (struct romfs_dirent *)file->data;
fs = (struct dfs_filesystem *)file->data;
root_dirent = (struct romfs_dirent *)fs->data;
if (check_dirent(root_dirent) != 0)
return -EIO;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册