mirror of https://gitee.com/openkylin/linux.git
mwifiex: usb: return an error if kmalloc fails
The current code returns success if kmalloc fails. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
3544f9f150
commit
3b1f0e8695
|
@ -870,8 +870,10 @@ static int mwifiex_prog_fw_w_helper(struct mwifiex_adapter *adapter,
|
||||||
|
|
||||||
/* Allocate memory for transmit */
|
/* Allocate memory for transmit */
|
||||||
fwdata = kzalloc(FW_DNLD_TX_BUF_SIZE, GFP_KERNEL);
|
fwdata = kzalloc(FW_DNLD_TX_BUF_SIZE, GFP_KERNEL);
|
||||||
if (!fwdata)
|
if (!fwdata) {
|
||||||
|
ret = -ENOMEM;
|
||||||
goto fw_exit;
|
goto fw_exit;
|
||||||
|
}
|
||||||
|
|
||||||
/* Allocate memory for receive */
|
/* Allocate memory for receive */
|
||||||
recv_buff = kzalloc(FW_DNLD_RX_BUF_SIZE, GFP_KERNEL);
|
recv_buff = kzalloc(FW_DNLD_RX_BUF_SIZE, GFP_KERNEL);
|
||||||
|
|
Loading…
Reference in New Issue