projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d54601b
)
ath6kl: Check for valid endpoint ID values in ath6kl_control_tx()
author
Raja Mani
<rmani@qca.qualcomm.com>
Fri, 21 Sep 2012 09:38:55 +0000
(15:08 +0530)
committer
Kalle Valo
<kvalo@qca.qualcomm.com>
Wed, 24 Oct 2012 08:49:50 +0000
(11:49 +0300)
It's safe to check endpoint id values before it get
really used. Found this on code review.
Signed-off-by: Raja Mani <rmani@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/txrx.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/ath/ath6kl/txrx.c
b/drivers/net/wireless/ath/ath6kl/txrx.c
index
efee590
..
cf4380d
100644
(file)
--- a/
drivers/net/wireless/ath/ath6kl/txrx.c
+++ b/
drivers/net/wireless/ath/ath6kl/txrx.c
@@
-293,6
+293,12
@@
int ath6kl_control_tx(void *devt, struct sk_buff *skb,
return -EACCES;
}
+ if (WARN_ON_ONCE(eid == ENDPOINT_UNUSED ||
+ eid >= ENDPOINT_MAX)) {
+ status = -EINVAL;
+ goto fail_ctrl_tx;
+ }
+
spin_lock_bh(&ar->lock);
ath6kl_dbg(ATH6KL_DBG_WLAN_TX,