commit | 199ba9faca909e77ac533449ecd1248123ce89e7 | [log] [tgz] |
---|---|---|
author | Larry Finger <Larry.Finger@lwfinger.net> | Mon Aug 20 13:48:31 2018 -0500 |
committer | Kalle Valo <kvalo@codeaurora.org> | Fri Aug 31 18:46:19 2018 +0300 |
tree | d31dc7a0c50816faa0b61899cee69d989249efb2 | |
parent | 5945310a175506f743b68fd6812dbcd1b3c95ec1 [diff] |
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: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>