mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 12:52:30 +00:00
hostfs: dumb (and usually harmless) tpyo - strncpy instead of strlcpy
... not harmless in this case - we have a string in the end of buffer already. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
9cb569d601
commit
850a496f96
@ -104,7 +104,7 @@ static char *__dentry_name(struct dentry *dentry, char *name)
|
||||
__putname(name);
|
||||
return NULL;
|
||||
}
|
||||
strncpy(name, root, PATH_MAX);
|
||||
strlcpy(name, root, PATH_MAX);
|
||||
if (len > p - name) {
|
||||
__putname(name);
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user