mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
hostfs: Remove open coded strcpy()
Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
aad50b1e06
commit
c278e81b8a
@ -105,11 +105,10 @@ static char *__dentry_name(struct dentry *dentry, char *name)
|
||||
__putname(name);
|
||||
return NULL;
|
||||
}
|
||||
if (p > name + len) {
|
||||
char *s = name + len;
|
||||
while ((*s++ = *p++) != '\0')
|
||||
;
|
||||
}
|
||||
|
||||
if (p > name + len)
|
||||
strcpy(name + len, p);
|
||||
|
||||
return name;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user