diff options
author | 2021-08-12 17:59:03 -0500 | |
---|---|---|
committer | 2021-08-13 08:05:17 +0200 | |
commit | 360a5812b9237a1dcc8da259e6e570a4b45379bd (patch) | |
tree | d5781bfe180f416ca3bc28eb31ba655ab9a34e29 /sound/core/control_led.c | |
parent | ALSA: hda/cs8409: Unmute/Mute codec when stream starts/stops (diff) | |
download | wireguard-linux-360a5812b9237a1dcc8da259e6e570a4b45379bd.tar.xz wireguard-linux-360a5812b9237a1dcc8da259e6e570a4b45379bd.zip |
ALSA: core: control_led: use strscpy instead of strlcpy
strlcpy is deprecated, use its safe replacement
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Bard Liao <bard.liao@intel.com>
Reviewed-by: Paul Olaru <paul.olaru@oss.nxp.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Link: https://lore.kernel.org/r/20210812225904.171529-2-pierre-louis.bossart@linux.intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r-- | sound/core/control_led.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/control_led.c b/sound/core/control_led.c index 764058cc345d..a95332b2b90b 100644 --- a/sound/core/control_led.c +++ b/sound/core/control_led.c @@ -564,7 +564,7 @@ static ssize_t set_led_id(struct snd_ctl_led_card *led_card, const char *buf, si else { for (; *s >= ' '; s++); *s = '\0'; - strlcpy(id.name, buf2, sizeof(id.name)); + strscpy(id.name, buf2, sizeof(id.name)); } break; } |