Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 199ba9fa authored by Larry Finger's avatar Larry Finger Committed by Kalle Valo
Browse files

rtl8187: Fix warning generated when strncpy() destination length matches the sixe argument



In gcc8, when the 3rd argument (size) of a call to strncpy() matches the
length of the first argument, the compiler warns of the possibility of an
unterminated string. Using strlcpy() forces a null at the end.

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 5945310a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ static int rtl8187_register_led(struct ieee80211_hw *dev,
	led->dev = dev;
	led->ledpin = ledpin;
	led->is_radio = is_radio;
	strncpy(led->name, name, sizeof(led->name));
	strlcpy(led->name, name, sizeof(led->name));

	led->led_dev.name = led->name;
	led->led_dev.default_trigger = default_trigger;