fix dfsv2 romfs dfs_romfs_getdents buffer overflow.
This commit is contained in:
parent
26fbe01ada
commit
5a438c818a
|
@ -352,7 +352,7 @@ static int dfs_romfs_getdents(struct dfs_file *file, struct dirent *dirp, uint32
|
|||
|
||||
d->d_namlen = rt_strlen(name);
|
||||
d->d_reclen = (rt_uint16_t)sizeof(struct dirent);
|
||||
rt_strncpy(d->d_name, name, rt_strlen(name) + 1);
|
||||
rt_strncpy(d->d_name, name, DFS_PATH_MAX);
|
||||
|
||||
/* move to next position */
|
||||
++ file->fpos;
|
||||
|
|
Loading…
Reference in New Issue