diff options
author | 2009-12-18 17:43:22 +0100 | |
---|---|---|
committer | 2009-12-18 17:43:32 +0100 | |
commit | 83e56d0b23f91b70a7e708ce0979a57b6c6a1507 (patch) | |
tree | bcfd461199eb4c551675ecd5bf5a9822231c482b /lib/debugobjects.c | |
parent | [S390] tape: Add pr_fmt() macro to all tape source files (diff) | |
download | wireguard-linux-83e56d0b23f91b70a7e708ce0979a57b6c6a1507.tar.xz wireguard-linux-83e56d0b23f91b70a7e708ce0979a57b6c6a1507.zip |
[S390] drivers: 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: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'lib/debugobjects.c')
0 files changed, 0 insertions, 0 deletions