diff options
| author | Ezequiel Garcia <[email protected]> | 2012-11-23 11:58:05 +0000 |
|---|---|---|
| committer | Artem Bityutskiy <[email protected]> | 2012-12-03 11:54:14 +0000 |
| commit | d856c13c11d81dfa545f927db8d31663d45bbc94 (patch) | |
| tree | 7253bc3605cbfb66a502ea54f62927a14e041d2c /net/unix/af_unix.c | |
| parent | UBI: remove spurious comment (diff) | |
| download | kernel-d856c13c11d81dfa545f927db8d31663d45bbc94.tar.gz kernel-d856c13c11d81dfa545f927db8d31663d45bbc94.zip | |
UBI: replace memcpy with struct assignment
This kind of memcpy() is error-prone. Its replacement with a struct
assignment is prefered because it's type-safe and much easier to read.
Found by coccinelle. Hand patched and reviewed.
Tested by compilation only.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
identifier struct_name;
struct struct_name to;
struct struct_name from;
expression E;
@@
-memcpy(&(to), &(from), E);
+to = from;
// </smpl>
Signed-off-by: Peter Senna Tschudin <[email protected]>
Signed-off-by: Ezequiel Garcia <[email protected]>
Signed-off-by: Artem Bityutskiy <[email protected]>
Diffstat (limited to 'net/unix/af_unix.c')
0 files changed, 0 insertions, 0 deletions
