Skip to content

Commit 95a54ea

Browse files
committed
🐞 fix(dfs_v2): fix memory write-through
1 parent 0c44726 commit 95a54ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dfs/dfs_v2/src/dfs_file.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ static char *dfs_nolink_path(struct dfs_mnt **mnt, char *fullpath, int mode)
210210
char link_fn[DFS_PATH_MAX] = {0};
211211
struct dfs_dentry *dentry = RT_NULL;
212212

213-
path = (char *)rt_malloc(DFS_PATH_MAX);
213+
path = (char *)rt_malloc((DFS_PATH_MAX * 2) + 1); // path + syslink + \0
214214
if (!path)
215215
{
216216
return path;

0 commit comments

Comments
 (0)