Fix bcmf_netdev.c:705:7: error: 'strnlen' specified bound 2 exceeds source size 1 [-Werror=stringop-overread]

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-10-22 19:36:15 +08:00 committed by Petro Karashchenko
parent 819ebe7356
commit 85deafd7bf
1 changed files with 1 additions and 1 deletions

View File

@ -702,7 +702,7 @@ static int bcmf_ifup(FAR struct net_driver_s *dev)
goto errout_in_wl_active;
}
if (strnlen(CONFIG_IEEE80211_BROADCOM_DEFAULT_COUNTRY, 2) == 2)
if (CONFIG_IEEE80211_BROADCOM_DEFAULT_COUNTRY[0])
{
bcmf_wl_set_country_code(priv, CHIP_STA_INTERFACE,
CONFIG_IEEE80211_BROADCOM_DEFAULT_COUNTRY);