[PATCH] wpa_supplicant: Fix potential memleak
Andrei Otcheretianski
andrei.otcheretianski at intel.com
Tue Feb 16 08:23:56 EST 2021
Fix a memory leak on error path.
Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski at intel.com>
---
wpa_supplicant/interworking.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/wpa_supplicant/interworking.c b/wpa_supplicant/interworking.c
index 1ff142a8d4..5db473cf73 100644
--- a/wpa_supplicant/interworking.c
+++ b/wpa_supplicant/interworking.c
@@ -2793,6 +2793,7 @@ int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst, int freq,
wpa_printf(MSG_WARNING,
"ANQP: Cannot send MBO query to unknown BSS "
MACSTR, MAC2STR(dst));
+ wpabuf_free(extra_buf);
return -1;
}
--
2.28.0
More information about the Hostap
mailing list