net/mac80211: Correct size given to memset
authorJulia Lawall <julia@diku.dk>
Wed, 9 Dec 2009 19:25:59 +0000 (20:25 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 10 Dec 2009 21:09:52 +0000 (16:09 -0500)
commit0c3cee72a403e3b4992a5478c9c33d668c246c22
tree964883c4d5c80485b82d293832e9fb57e32661df
parent214ac9a4ead6cb254451c09d9c8234a76693feb1
net/mac80211: Correct size given to memset

Memset should be given the size of the structure, not the size of the pointer.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
type T;
T *x;
expression E;
@@

memset(x, E, sizeof(
+ *
 x))
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/mesh.c