From: Jouni Malinen Date: Sat, 19 Oct 2013 13:28:56 +0000 (+0300) Subject: eapol_test: Initialize BSS lists X-Git-Tag: hostap_2_1~834 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e8bc7d6fb322d7b3d37211462bf956edc910537;p=thirdparty%2Fhostap.git eapol_test: Initialize BSS lists This is needed to avoid issues with control interface commands that could request BSS list during an eapol_test run. wpa_cli tries to update its internal BSS list and that could trigger eapol_test crashes without this. Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/eapol_test.c b/wpa_supplicant/eapol_test.c index 3fbc3f42d..0806e9cb9 100644 --- a/wpa_supplicant/eapol_test.c +++ b/wpa_supplicant/eapol_test.c @@ -1285,6 +1285,8 @@ int main(int argc, char *argv[]) os_memset(&wpa_s, 0, sizeof(wpa_s)); wpa_s.global = &global; eapol_test.wpa_s = &wpa_s; + dl_list_init(&wpa_s.bss); + dl_list_init(&wpa_s.bss_id); wpa_s.conf = wpa_config_read(conf, NULL); if (wpa_s.conf == NULL) { printf("Failed to parse configuration file '%s'.\n", conf);