aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2005-06-18 22:52:09 -0700
committerDavid S. Miller <davem@davemloft.net>2005-06-18 22:52:09 -0700
commite386c6eb431ca2e435d0202ad6997f3d2ccab2ce (patch)
treef8d3145d017b3918f632595b2e14a5547956597c /net/core
parent[NETLINK]: Kill bogus NLMSG_SET_MULTIPART uses. (diff)
downloadlinux-dev-e386c6eb431ca2e435d0202ad6997f3d2ccab2ce.tar.xz
linux-dev-e386c6eb431ca2e435d0202ad6997f3d2ccab2ce.zip
[NEIGH]: Fix use of uninitialized variable when trimming in neightbl_fill_parms
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/neighbour.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index d1f8f7847f7c..2296a145fb78 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -1555,7 +1555,9 @@ out:
static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
{
- struct rtattr *nest = RTA_NEST(skb, NDTA_PARMS);
+ struct rtattr *nest = NULL;
+
+ nest = RTA_NEST(skb, NDTA_PARMS);
if (parms->dev)
RTA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex);