eapol: fix incorrect increment appending OCI

This was addign an extra byte to the buffer which hostapd accepted
unless there was additional data, like the RSNXE.
This commit is contained in:
James Prestwood 2021-09-28 08:46:51 -07:00 committed by Denis Kenzior
parent e6aaceeb4b
commit 08936c1534
1 changed files with 1 additions and 1 deletions

View File

@ -1256,7 +1256,7 @@ static void eapol_handle_ptk_1_of_4(struct eapol_sm *sm,
ies[ies_len++] = 4 + 3;
l_put_be32(HANDSHAKE_KDE_OCI, ies + ies_len);
ies_len += 4;
oci_from_chandef(sm->handshake->chandef, ies + ies_len++);
oci_from_chandef(sm->handshake->chandef, ies + ies_len);
ies_len += 3;
}