Browse Source

Clear beacon_data before usage

struct beacon_data contains a lot of pointers. Make sure it gets cleared
to zero if hostapd_build_beacon_data() gets called from a path that does
not clear the structure first.

Signed-hostap: Janusz Dziedzic <janusz.dziedzic@tieto.com>
Janusz Dziedzic 11 years ago
parent
commit
80ed037f00
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/ap/hostapd.c

+ 1 - 0
src/ap/hostapd.c

@@ -2049,6 +2049,7 @@ static int hostapd_build_beacon_data(struct hostapd_iface *iface,
 	int ret;
 	int ret;
 	struct hostapd_data *hapd = iface->bss[0];
 	struct hostapd_data *hapd = iface->bss[0];
 
 
+	os_memset(beacon, 0, sizeof(*beacon));
 	ret = ieee802_11_build_ap_params(hapd, &params);
 	ret = ieee802_11_build_ap_params(hapd, &params);
 	if (ret < 0)
 	if (ret < 0)
 		return ret;
 		return ret;