mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 11:19:32 +03:00
Fedora 28: Fix misc bounds check compiler warnings
Fix a bunch of truncation compiler warnings that show up on Fedora 28 (GCC 8.0.1). Reviewed-by: Giuseppe Di Natale <guss80@gmail.com> Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #7368 Closes #7826 Closes #7830
This commit is contained in:
parent
644e01a268
commit
5d6ad2442b
@ -219,7 +219,7 @@ smb_enable_share_one(const char *sharename, const char *sharepath)
|
|||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
/* Support ZFS share name regexp '[[:alnum:]_-.: ]' */
|
/* Support ZFS share name regexp '[[:alnum:]_-.: ]' */
|
||||||
strncpy(name, sharename, sizeof (name));
|
strlcpy(name, sharename, sizeof (name));
|
||||||
name [sizeof (name)-1] = '\0';
|
name [sizeof (name)-1] = '\0';
|
||||||
|
|
||||||
pos = name;
|
pos = name;
|
||||||
|
@ -321,7 +321,7 @@ kcf_create_mech_entry(kcf_ops_class_t class, char *mechname)
|
|||||||
mutex_enter(&(me_tab[i].me_mutex));
|
mutex_enter(&(me_tab[i].me_mutex));
|
||||||
if (me_tab[i].me_name[0] == 0) {
|
if (me_tab[i].me_name[0] == 0) {
|
||||||
/* Found an empty spot */
|
/* Found an empty spot */
|
||||||
(void) strncpy(me_tab[i].me_name, mechname,
|
(void) strlcpy(me_tab[i].me_name, mechname,
|
||||||
CRYPTO_MAX_MECH_NAME);
|
CRYPTO_MAX_MECH_NAME);
|
||||||
me_tab[i].me_name[CRYPTO_MAX_MECH_NAME-1] = '\0';
|
me_tab[i].me_name[CRYPTO_MAX_MECH_NAME-1] = '\0';
|
||||||
me_tab[i].me_mechid = KCF_MECHID(class, i);
|
me_tab[i].me_mechid = KCF_MECHID(class, i);
|
||||||
|
@ -155,7 +155,7 @@ do_link(const char *pfile)
|
|||||||
return (-1);
|
return (-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
strncpy(pfile_copy, pfile, sizeof (pfile_copy));
|
strncpy(pfile_copy, pfile, sizeof (pfile_copy)-1);
|
||||||
pfile_copy[sizeof (pfile_copy) - 1] = '\0';
|
pfile_copy[sizeof (pfile_copy) - 1] = '\0';
|
||||||
/*
|
/*
|
||||||
* Figure out source file directory name, and create
|
* Figure out source file directory name, and create
|
||||||
|
Loading…
Reference in New Issue
Block a user