Skip to content
Snippets Groups Projects
Commit 850a496f authored by Al Viro's avatar Al Viro
Browse files

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: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 9cb569d6
No related branches found
No related tags found
No related merge requests found
...@@ -104,7 +104,7 @@ static char *__dentry_name(struct dentry *dentry, char *name) ...@@ -104,7 +104,7 @@ static char *__dentry_name(struct dentry *dentry, char *name)
__putname(name); __putname(name);
return NULL; return NULL;
} }
strncpy(name, root, PATH_MAX); strlcpy(name, root, PATH_MAX);
if (len > p - name) { if (len > p - name) {
__putname(name); __putname(name);
return NULL; return NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment