Commit c2f2bbd9 authored by dnc40085's avatar dnc40085 Committed by dnc40085
Browse files

Fix problem in wifi.sta.getap where invidual result is lost.

parent a8359f1d
...@@ -97,7 +97,6 @@ static void wifi_scan_done(void *arg, STATUS status) ...@@ -97,7 +97,6 @@ static void wifi_scan_done(void *arg, STATUS status)
if (status == OK) if (status == OK)
{ {
struct bss_info *bss_link = (struct bss_info *)arg; struct bss_info *bss_link = (struct bss_info *)arg;
bss_link = bss_link->next.stqe_next;//ignore first
lua_newtable( gL ); lua_newtable( gL );
while (bss_link != NULL) while (bss_link != NULL)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment