diff options
author | Julia Lawall <julia@diku.dk> | 2009-12-13 06:47:04 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-14 04:56:35 +0100 |
commit | 6057912d7baad31be9819518674ffad349a065b1 (patch) | |
tree | 73cf227b2f00b170041c9e2f7ea8dfa6dd9af38b /drivers/net/can | |
parent | drivers/net/cpmac.c: Correct code taking the size of a pointer (diff) | |
download | linux-6057912d7baad31be9819518674ffad349a065b1.tar.xz linux-6057912d7baad31be9819518674ffad349a065b1.zip |
drivers/net/usb: Correct code taking the size of a pointer
sizeof(dev->dev_addr) is the size of a pointer. A few lines above, the
size of this field is obtained using netdev->addr_len for a call to memcpy,
so do the same here.
A simplified version of the semantic patch that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression *x;
expression f;
type T;
@@
*f(...,(T)x,...)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can')
0 files changed, 0 insertions, 0 deletions