projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e44892
)
net_sched: Fix stack info leak in cbq_dump_wrr().
author
David S. Miller
<davem@davemloft.net>
Tue, 30 Jul 2013 07:16:21 +0000
(
00:16
-0700)
committer
David S. Miller
<davem@davemloft.net>
Tue, 30 Jul 2013 07:16:21 +0000
(
00:16
-0700)
Make sure the reserved fields, and padding (if any), are
fully initialized.
Based upon a patch by Dan Carpenter and feedback from
Joe Perches.
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_cbq.c
patch
|
blob
|
history
diff --git
a/net/sched/sch_cbq.c
b/net/sched/sch_cbq.c
index 71a568862557c26cb9fd97bfbd26531b55ad4283..7a42c81a19ebe55f0b6a137f89c55b46314f8cd7 100644
(file)
--- a/
net/sched/sch_cbq.c
+++ b/
net/sched/sch_cbq.c
@@
-1465,6
+1465,7
@@
static int cbq_dump_wrr(struct sk_buff *skb, struct cbq_class *cl)
unsigned char *b = skb_tail_pointer(skb);
struct tc_cbq_wrropt opt;
+ memset(&opt, 0, sizeof(opt));
opt.flags = 0;
opt.allot = cl->allot;
opt.priority = cl->priority + 1;