staging: rtl8188eu: prevent an underflow in rtw_check_beacon_data()

The "len" could be as low as -14 so we should check for negatives.

Fixes: 9a7fe54ddc ("staging: r8188eu: Add source files for new driver - part 1")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Dan Carpenter 2017-04-22 13:47:23 +03:00 коммит произвёл Greg Kroah-Hartman
Родитель f78d76699f
Коммит 784047eb2d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -878,7 +878,7 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf, int len)
return _FAIL;
if (len > MAX_IE_SZ)
if (len < 0 || len > MAX_IE_SZ)
return _FAIL;
pbss_network->IELength = len;