mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-25 16:32:48 +01:00
wsc: Make sure the initial scan can be started
In push button mode, ensure the initial scan was actually queued successfully.
This commit is contained in:
parent
4e9dc77b2d
commit
58ec4ec1c1
@ -678,6 +678,13 @@ static bool wsc_start_pushbutton(struct wsc *wsc)
|
|||||||
wsc->scan_id = scan_active(device_get_ifindex(wsc->device),
|
wsc->scan_id = scan_active(device_get_ifindex(wsc->device),
|
||||||
wsc->wsc_ies, wsc->wsc_ies_size,
|
wsc->wsc_ies, wsc->wsc_ies_size,
|
||||||
NULL, scan_results, wsc, NULL);
|
NULL, scan_results, wsc, NULL);
|
||||||
|
if (!wsc->scan_id) {
|
||||||
|
l_free(wsc->wsc_ies);
|
||||||
|
wsc->wsc_ies = NULL;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
wsc->walk_timer = l_timeout_create(WALK_TIME, walk_timeout, wsc, NULL);
|
wsc->walk_timer = l_timeout_create(WALK_TIME, walk_timeout, wsc, NULL);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user