From 6a85a624d7117dbedee27fcd2b337eb3797cc342 Mon Sep 17 00:00:00 2001 From: MurphyZhao Date: Fri, 29 Jun 2018 14:56:19 +0800 Subject: [PATCH] [drivers/wlan] Fix the problem that the password is empty Signed-off-by: MurphyZhao --- components/drivers/wlan/wlan_dev.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/components/drivers/wlan/wlan_dev.c b/components/drivers/wlan/wlan_dev.c index 3c26531508..a42072692c 100644 --- a/components/drivers/wlan/wlan_dev.c +++ b/components/drivers/wlan/wlan_dev.c @@ -117,7 +117,18 @@ int rt_wlan_softap(struct rt_wlan_device *device, struct rt_wlan_info *info, cha rt_wlan_set_info(device, info); } - rt_strncpy((char *)device->key, (char *)password, sizeof(device->key) - 1); + if (password == NULL) + { + memset(device->key, 0, sizeof(device->key)); + } + else + { + if (rt_strlen(password) > sizeof(device->key) - 1) + { + rt_kprintf("WARN input password is longer than %d bytes.", sizeof(device->key) - 1); + } + rt_strncpy((char *)device->key, (char *)password, sizeof(device->key) - 1); + } result = rt_device_control(RT_DEVICE(device), WIFI_SOFTAP, (void *)password); -- GitLab