diff options
author | Julia Lawall <julia@diku.dk> | 2009-12-12 20:41:29 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-13 22:56:34 -0500 |
commit | 94de803db748b902a9442fcfd7aad31a2fde43b7 (patch) | |
tree | ba5aa9e86b625eb9abdbab29c75218d6ee975b5e /drivers/net/sfc/selftest.c | |
parent | 710708e82bfbdd392ebdef5743e68fef0fde91a6 (diff) |
drivers/net/sfc: Correct code taking the size of a pointer
The function efx_iterate_state contains the code
memcpy(&payload->msg, payload_msg, sizeof(payload_msg));
This is the only use of payload_msg. The type of payload_msg is
changed from a pointer to an array, so that the result of sizeof really is
the length of the string.
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/sfc/selftest.c')
-rw-r--r-- | drivers/net/sfc/selftest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sfc/selftest.c b/drivers/net/sfc/selftest.c index 14949bb303a0..af3933579790 100644 --- a/drivers/net/sfc/selftest.c +++ b/drivers/net/sfc/selftest.c | |||
@@ -47,7 +47,7 @@ static const unsigned char payload_source[ETH_ALEN] = { | |||
47 | 0x00, 0x0f, 0x53, 0x1b, 0x1b, 0x1b, | 47 | 0x00, 0x0f, 0x53, 0x1b, 0x1b, 0x1b, |
48 | }; | 48 | }; |
49 | 49 | ||
50 | static const char *payload_msg = | 50 | static const char payload_msg[] = |
51 | "Hello world! This is an Efx loopback test in progress!"; | 51 | "Hello world! This is an Efx loopback test in progress!"; |
52 | 52 | ||
53 | /** | 53 | /** |