projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04a74a9
)
mwifiex: missing error code on allocation failure
author
Dan Carpenter
<dan.carpenter@oracle.com>
Tue, 19 Apr 2016 14:21:58 +0000
(07:21 -0700)
committer
Kalle Valo
<kvalo@codeaurora.org>
Tue, 26 Apr 2016 09:28:53 +0000
(12:28 +0300)
We accidentally return success instead of -ENOMEM.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/marvell/mwifiex/usb.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/marvell/mwifiex/usb.c
b/drivers/net/wireless/marvell/mwifiex/usb.c
index 05108618430da866e680ac51498f229e1be8f4ea..cdd8f9a867a963ebec21bd21a36ad2fb68feb449 100644
(file)
--- a/
drivers/net/wireless/marvell/mwifiex/usb.c
+++ b/
drivers/net/wireless/marvell/mwifiex/usb.c
@@
-1017,8
+1017,10
@@
static int mwifiex_prog_fw_w_helper(struct mwifiex_adapter *adapter,
/* Allocate memory for receive */
recv_buff = kzalloc(FW_DNLD_RX_BUF_SIZE, GFP_KERNEL);
- if (!recv_buff)
+ if (!recv_buff) {
+ ret = -ENOMEM;
goto cleanup;
+ }
do {
/* Send pseudo data to check winner status first */