From: Jouni Malinen Date: Fri, 28 Oct 2011 09:03:45 +0000 (+0300) Subject: Fix WPA authenticator configuration to not leave uninitialized fields X-Git-Tag: hostap-1-bp~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d28b43f66f91c28c9fdefdfc17f006a418462bc4;p=thirdparty%2Fhostap.git Fix WPA authenticator configuration to not leave uninitialized fields hostapd_wpa_auth_conf() is called on uninitialized memory and the conditional blocks in this function may leave some fields into uninitialized state. This can result in unexpected behavior elsewhere since some of the variables may be used without matching #ifdef blocks. Fix this by zeroing the memory. --- diff --git a/src/ap/wpa_auth_glue.c b/src/ap/wpa_auth_glue.c index 7b60bc780..af239c8e5 100644 --- a/src/ap/wpa_auth_glue.c +++ b/src/ap/wpa_auth_glue.c @@ -34,6 +34,7 @@ static void hostapd_wpa_auth_conf(struct hostapd_bss_config *conf, struct wpa_auth_config *wconf) { + os_memset(wconf, 0, sizeof(*wconf)); wconf->wpa = conf->wpa; wconf->wpa_key_mgmt = conf->wpa_key_mgmt; wconf->wpa_pairwise = conf->wpa_pairwise;