Browse Source

MBO: Fix possible memory leak in anqp_send_req()

In case that an mbo object is allocated, but there is a failure
to resize the wpabuf, need to free the mbo object.

Signed-off-by: Ilan Peer <ilan.peer@intel.com>
Ilan Peer 7 years ago
parent
commit
422570eec8
1 changed files with 1 additions and 0 deletions
  1. 1 0
      wpa_supplicant/interworking.c

+ 1 - 0
wpa_supplicant/interworking.c

@@ -2738,6 +2738,7 @@ int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst,
 		if (mbo) {
 			if (wpabuf_resize(&extra_buf, wpabuf_len(mbo))) {
 				wpabuf_free(extra_buf);
+				wpabuf_free(mbo);
 				return -1;
 			}
 			wpabuf_put_buf(extra_buf, mbo);