Fix compiler warning on non-802.11r build
This commit is contained in:
parent
7733991281
commit
6de513fcd3
1 changed files with 1 additions and 3 deletions
|
@ -262,7 +262,6 @@ int wpa_supplicant_send_2_of_4(struct wpa_sm *sm, const unsigned char *dst,
|
||||||
struct wpa_eapol_key *reply;
|
struct wpa_eapol_key *reply;
|
||||||
u8 *rbuf;
|
u8 *rbuf;
|
||||||
u8 *rsn_ie_buf = NULL;
|
u8 *rsn_ie_buf = NULL;
|
||||||
size_t rsn_ie_buf_len;
|
|
||||||
|
|
||||||
if (wpa_ie == NULL) {
|
if (wpa_ie == NULL) {
|
||||||
wpa_printf(MSG_WARNING, "WPA: No wpa_ie set - cannot "
|
wpa_printf(MSG_WARNING, "WPA: No wpa_ie set - cannot "
|
||||||
|
@ -275,8 +274,7 @@ int wpa_supplicant_send_2_of_4(struct wpa_sm *sm, const unsigned char *dst,
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
/* Add PMKR1Name into RSN IE (PMKID-List) */
|
/* Add PMKR1Name into RSN IE (PMKID-List) */
|
||||||
rsn_ie_buf_len = wpa_ie_len + 2 + 2 + PMKID_LEN;
|
rsn_ie_buf = os_malloc(wpa_ie_len + 2 + 2 + PMKID_LEN);
|
||||||
rsn_ie_buf = os_malloc(rsn_ie_buf_len);
|
|
||||||
if (rsn_ie_buf == NULL)
|
if (rsn_ie_buf == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
os_memcpy(rsn_ie_buf, wpa_ie, wpa_ie_len);
|
os_memcpy(rsn_ie_buf, wpa_ie, wpa_ie_len);
|
||||||
|
|
Loading…
Reference in a new issue