[NEIGH]: Fix use of uninitialized variable when trimming in neightbl_fill_parms
authorThomas Graf <tgraf@suug.ch>
Sun, 19 Jun 2005 05:52:09 +0000 (22:52 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sun, 19 Jun 2005 05:52:09 +0000 (22:52 -0700)
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/neighbour.c

index d1f8f78..2296a14 100644 (file)
@@ -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);