diff options
author | Anton Nayshtut <qca_antonn@qca.qualcomm.com> | 2015-07-27 16:45:36 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2015-08-03 17:40:29 +0300 |
commit | 5e09f24a344d5043703a8d93cf51d9369247172f (patch) | |
tree | 0224b005f374eb5987065fac45f1c70efec71a83 /src/fst | |
parent | 2665c26f91d0c19aa5745802635cc357abd79d67 (diff) | |
download | hostap-5e09f24a344d5043703a8d93cf51d9369247172f.tar.gz |
FST: Fix MB IE clearing on detach
This fixes an issue where freed MB IEs buffer memory could potentially
have been accessed after an interface is detached from FST group.
Without this fix, if an interface is detached from FST group, it can use
MB IEs buffer previously set by fst_iface_set_ies(), although the buffer
was released by fst_iface_delete().
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'src/fst')
-rw-r--r-- | src/fst/fst_iface.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fst/fst_iface.c b/src/fst/fst_iface.c index 4fba9b1a5..5a92d2c33 100644 --- a/src/fst/fst_iface.c +++ b/src/fst/fst_iface.c @@ -43,6 +43,7 @@ struct fst_iface * fst_iface_create(struct fst_group *g, const char *ifname, void fst_iface_delete(struct fst_iface *i) { + fst_iface_set_ies(i, NULL); wpabuf_free(i->mb_ie); os_free(i); } |