Commit 96e47e30 authored by Aymen Qader's avatar Aymen Qader Committed by Greg Kroah-Hartman

staging: rtl8188eu: Skip unnecessary field checks

Skip unnecessary request field checks when the information element
pointer is null.
Signed-off-by: default avatarAymen Qader <qader.aymen@gmail.com>
ACKed-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dee43f7a
...@@ -2971,11 +2971,11 @@ static unsigned int OnAssocReq(struct adapter *padapter, ...@@ -2971,11 +2971,11 @@ static unsigned int OnAssocReq(struct adapter *padapter,
/* checking SSID */ /* checking SSID */
p = rtw_get_ie(pframe + WLAN_HDR_A3_LEN + ie_offset, _SSID_IE_, &ie_len, p = rtw_get_ie(pframe + WLAN_HDR_A3_LEN + ie_offset, _SSID_IE_, &ie_len,
pkt_len - WLAN_HDR_A3_LEN - ie_offset); pkt_len - WLAN_HDR_A3_LEN - ie_offset);
if (!p)
status = _STATS_FAILURE_;
if (ie_len == 0) { /* broadcast ssid, however it is not allowed in assocreq */ if (!p || ie_len == 0) {
/* broadcast ssid, however it is not allowed in assocreq */
status = _STATS_FAILURE_; status = _STATS_FAILURE_;
goto OnAssocReqFail;
} else { } else {
/* check if ssid match */ /* check if ssid match */
if (memcmp((void *)(p+2), cur->Ssid.Ssid, cur->Ssid.SsidLength)) if (memcmp((void *)(p+2), cur->Ssid.Ssid, cur->Ssid.SsidLength))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment