Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 278787
b: refs/heads/master
c: b43faac
h: refs/heads/master
i:
  278785: 92b2bcf
  278783: 3d427f8
v: v3
  • Loading branch information
David S. Miller committed Dec 13, 2011
1 parent d870370 commit d0f2142
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5c3ddec73d01a1fae9409c197078cb02c42238c3
refs/heads/master: b43faac69062f0fc75bd3230d67da64e184232d1
6 changes: 4 additions & 2 deletions trunk/net/ipv6/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -1089,8 +1089,10 @@ struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
neigh_hold(neigh);
else {
neigh = __neigh_lookup_errno(&nd_tbl, &fl6->daddr, dev);
if (IS_ERR(neigh))
neigh = NULL;
if (IS_ERR(neigh)) {
dst_free(&rt->dst);
return ERR_CAST(neigh);
}
}

rt->dst.flags |= DST_HOST;
Expand Down

0 comments on commit d0f2142

Please sign in to comment.