diff options
author | Thomas Graf <tgraf@suug.ch> | 2005-07-05 15:01:25 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-07-05 15:01:25 -0700 |
commit | db1322b8012e1a8ad711c04813817328cff46718 (patch) | |
tree | f6e1997c253d2477ac81390c647d76f1d662a63e /net/decnet | |
parent | bb1d23b02657f494dff295f6cdd1f29df30fa61e (diff) | |
download | linux-3.10-db1322b8012e1a8ad711c04813817328cff46718.tar.gz linux-3.10-db1322b8012e1a8ad711c04813817328cff46718.tar.bz2 linux-3.10-db1322b8012e1a8ad711c04813817328cff46718.zip |
[DECNET]: Fix memset overflow on 64bit archs while dumping decnet routing rules
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/decnet')
-rw-r--r-- | net/decnet/dn_fib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/decnet/dn_fib.c b/net/decnet/dn_fib.c index 9934b25720e..99bc061759c 100644 --- a/net/decnet/dn_fib.c +++ b/net/decnet/dn_fib.c @@ -551,7 +551,8 @@ int dn_fib_dump(struct sk_buff *skb, struct netlink_callback *cb) if (t < s_t) continue; if (t > s_t) - memset(&cb->args[1], 0, sizeof(cb->args)-sizeof(int)); + memset(&cb->args[1], 0, + sizeof(cb->args) - sizeof(cb->args[0])); tb = dn_fib_get_table(t, 0); if (tb == NULL) continue; |