Fix a crash in iwx(4) when connecting to WEP networks via ifconfig join.
authorstsp <stsp@openbsd.org>
Tue, 24 Jan 2023 16:18:22 +0000 (16:18 +0000)
committerstsp <stsp@openbsd.org>
Tue, 24 Jan 2023 16:18:22 +0000 (16:18 +0000)
commit6a7986fdbfcd482446abea279f2cde206e166370
tree22d64ecfda2b9fec6d56af97f277f189bf144119
parent6ac17ef23a2d12ced826edb1aaee3a8a8c414d14
Fix a crash in iwx(4) when connecting to WEP networks via ifconfig join.

In if_iwx.c r1.63 / CVS commit ID QzTzJtyPl10L63Yi, I fixed a problem with
connecting to WPA1/TKIP networks. This change introduced a deference of
the 'ni' pointer passed to ic_set_key(). This pointer will be passed in
as NULL in certain situations, such as when WEP is used. Add the missing
NULL check.

reported by and fix tested by matthieu@
sys/dev/pci/if_iwx.c