test-runner: fix crash for tests using radius_server

Tests which use a standalone RADIUS server may crash due to
the wiphy array not taking into account the 'radius_server'
key which is skipped during setup.
This commit is contained in:
James Prestwood 2020-03-16 12:22:40 -07:00 committed by Denis Kenzior
parent 37886066d8
commit af5c77aeba
1 changed files with 1 additions and 1 deletions

View File

@ -1373,7 +1373,7 @@ static bool configure_hostapd_instances(struct l_settings *hw_settings,
hostapd_config_file_paths = l_new(char *, i + 1);
wiphys = alloca(sizeof(struct wiphy *) * (i + 1));
wiphys[i] = NULL;
memset(wiphys, 0, sizeof(struct wiphy *) * (i + 1));
hostapd_pids_out[0] = -1;