3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

owe: fix potential uninitialized variable

This commit is contained in:
James Prestwood 2019-10-16 15:29:52 -07:00 committed by Denis Kenzior
parent 8bbfa4db49
commit ba7f7febd1

View File

@ -246,7 +246,7 @@ static int owe_rx_associate(struct auth_proto *ap, const uint8_t *frame,
size_t owe_dh_len = 0;
const uint8_t *owe_dh = NULL;
struct ie_rsn_info info;
bool akm_found;
bool akm_found = false;
const void *data;
mpdu = mpdu_validate(frame, len);