commit | c288248f5b26cd5563112fcdc077bf44964a942d | [log] [tgz] |
---|---|---|
author | Takashi Iwai <tiwai@suse.de> | Wed Jun 27 14:59:00 2018 +0200 |
committer | Takashi Iwai <tiwai@suse.de> | Wed Jun 27 18:11:32 2018 +0200 |
tree | 5217e0facab2451426d72e844afd90c33ec13594 | |
parent | 401caff70cd3d3ef3c96e1a1cbf6f973c24ba899 [diff] |
ALSA: intel_hdmi: Use strlcpy() instead of strncpy() hdmi_lpe_audio_probe() copies the pcm name string via strncpy(), but as a gcc8 warning suggests, it misses a NUL terminator, and unlikely the expected result. Use the proper one, strlcpy() instead. Signed-off-by: Takashi Iwai <tiwai@suse.de>