1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Use strlcpy() instead of strncpy() because subsequent mkstemps expects

the string be nul-terminated.

Reviewed by:	neel
MFC after:	2 weeks
Differential Revision:	https://reviews.freebsd.org/D3685
This commit is contained in:
Xin LI 2015-09-17 18:11:26 +00:00
parent ca04571419
commit 4bdf90c43c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287927

View File

@ -790,10 +790,10 @@ basl_open(struct basl_fio *bf, int suffix)
err = 0;
if (suffix) {
strncpy(bf->f_name, basl_stemplate, MAXPATHLEN);
strlcpy(bf->f_name, basl_stemplate, MAXPATHLEN);
bf->fd = mkstemps(bf->f_name, strlen(BHYVE_ASL_SUFFIX));
} else {
strncpy(bf->f_name, basl_template, MAXPATHLEN);
strlcpy(bf->f_name, basl_template, MAXPATHLEN);
bf->fd = mkstemp(bf->f_name);
}