diff options
author | Julia Lawall <julia@diku.dk> | 2009-12-13 08:35:45 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-14 06:56:35 +0300 |
commit | 2447f2f3c38d3058d50de93df225ee6ad295932b (patch) | |
tree | 411f7dde320c07ec45cf354a62ca1f04263fc532 /drivers/net/usb/rtl8150.c | |
parent | 94de803db748b902a9442fcfd7aad31a2fde43b7 (diff) | |
download | linux-2447f2f3c38d3058d50de93df225ee6ad295932b.tar.xz |
drivers/net/cpmac.c: Correct code taking the size of a pointer
sizeof(dev->dev_addr) is the size of a pointer. On the other hand,
sizeof(pdata->dev_addr) is the size of an array, so use that instead.
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/usb/rtl8150.c')
0 files changed, 0 insertions, 0 deletions