Commit 0c3cee72a403e3b4992a5478c9c33d668c246c22
Committed by
John W. Linville
1 parent
214ac9a4ea
Exists in
master
and in
39 other branches
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>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
net/mac80211/mesh.c
... | ... | @@ -427,7 +427,7 @@ |
427 | 427 | char *addr5, char *addr6) |
428 | 428 | { |
429 | 429 | int aelen = 0; |
430 | - memset(meshhdr, 0, sizeof(meshhdr)); | |
430 | + memset(meshhdr, 0, sizeof(*meshhdr)); | |
431 | 431 | meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL; |
432 | 432 | put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum); |
433 | 433 | sdata->u.mesh.mesh_seqnum++; |