Merge pull request #3042 from enkiller/pr
[components][drivers][wlan] 修复WLAN事件附加数据为空的问题
This commit is contained in:
commit
77e103f60a
@ -260,7 +260,8 @@ static rt_err_t rt_wlan_send_to_thread(rt_wlan_event_t event, void *buff, int le
|
|||||||
msg->event = event;
|
msg->event = event;
|
||||||
if (len != 0)
|
if (len != 0)
|
||||||
{
|
{
|
||||||
msg->buff = ((char *)msg) + sizeof(struct rt_wlan_msg);
|
msg->buff = (void *)&msg[1];
|
||||||
|
rt_memcpy(msg->buff, buff, len);
|
||||||
msg->len = len;
|
msg->len = len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user