]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: rtl8723bs: Fix potential usage while NULL error in hal/rtl8723b_hal_init.c
authorLarry Finger <Larry.Finger@lwfinger.net>
Sat, 8 Apr 2017 16:07:30 +0000 (11:07 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 9 Apr 2017 07:26:28 +0000 (09:26 +0200)
Smatch logs the following:

  CHECK   drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c:518 rtl8723b_FirmwareDownload() error: we previously assumed 'pFirmware' could be null (see line 382)

Fixing this error required a rewrite of the error exits from this routine.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c

index b7f6dc7ce318590bbcc8c20441eb0f25ee0980d4..d40ad03e99a35bfad8c5041964dda0545feca883 100644 (file)
@@ -377,13 +377,13 @@ s32 rtl8723b_FirmwareDownload(struct adapter *padapter, bool  bUsedWoWLANFw)
        RT_TRACE(_module_hal_init_c_, _drv_notice_, ("+%s, bUsedWoWLANFw:%d\n", __func__, bUsedWoWLANFw));
 #endif
        pFirmware = kzalloc(sizeof(struct rt_firmware), GFP_KERNEL);
+       if (!pFirmware)
+               return _FAIL;
        pBTFirmware = kzalloc(sizeof(struct rt_firmware), GFP_KERNEL);
-
-       if (!pFirmware || !pBTFirmware) {
-               rtStatus = _FAIL;
-               goto exit;
+       if (!pBTFirmware) {
+               kfree(pFirmware);
+               return _FAIL;
        }
-
        tmp_ps = rtw_read8(padapter, 0xa3);
        tmp_ps &= 0xf8;
        tmp_ps |= 0x02;
@@ -441,7 +441,7 @@ s32 rtl8723b_FirmwareDownload(struct adapter *padapter, bool  bUsedWoWLANFw)
        if (pFirmware->ulFwLength > FW_8723B_SIZE) {
                rtStatus = _FAIL;
                DBG_871X_LEVEL(_drv_emerg_, "Firmware size:%u exceed %u\n", pFirmware->ulFwLength, FW_8723B_SIZE);
-               goto exit;
+               goto release_fw1;
        }
 
        pFirmwareBuf = pFirmware->szFwBuffer;
@@ -517,6 +517,7 @@ fwdl_stat:
 exit:
        kfree(pFirmware->szFwBuffer);
        kfree(pFirmware);
+release_fw1:
        kfree(pBTFirmware);
        DBG_871X(" <=== rtl8723b_FirmwareDownload()\n");
        return rtStatus;