station: warn on missing scan_bss in station_transition_start

This shouldn't be possible in theory since the roam_bss_list being
iterated is a subset of entire scan_bss list station/network has
but to be safe, and catch any issues due to future changes warn on
this condition.
This commit is contained in:
James Prestwood 2024-02-27 13:16:18 -08:00 committed by Denis Kenzior
parent 14aa333a39
commit 42273fd122
1 changed files with 2 additions and 0 deletions

View File

@ -2533,6 +2533,8 @@ static void station_transition_start(struct station *station)
while ((rbss = l_queue_peek_head(station->roam_bss_list))) {
struct scan_bss *bss = network_bss_find_by_addr(
station->connected_network, rbss->addr);
if (L_WARN_ON(!bss))
continue;
roaming = station_try_next_transition(station, bss,
rbss->ft_failed);