diff options
author | David S. Miller <davem@davemloft.net> | 2012-06-11 18:52:29 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-11 18:52:29 -0400 |
commit | 55afabaa0df0dd139c8796a71beb43d1216fbe43 (patch) | |
tree | 5f3ad3d76d9101c11d15197b40fb4f86402db3a9 /include/net/ip6_route.h | |
parent | 352e04b9111d608bd89ba7bd8070846d4f97d104 (diff) |
inet: Fix BUG triggered by __rt{,6}_get_peer().
If no peer actually gets attached (either because create is zero or
the peer allocation fails) we'll trigger a BUG because we
unconditionally do an rt{,6}_peer_ptr() afterwards.
Fix this by guarding it with the proper check.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip6_route.h')
-rw-r--r-- | include/net/ip6_route.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip6_route.h b/include/net/ip6_route.h index f88a85cf31c..a2cda240ca9 100644 --- a/include/net/ip6_route.h +++ b/include/net/ip6_route.h | |||
@@ -61,7 +61,7 @@ static inline struct inet_peer *__rt6_get_peer(struct rt6_info *rt, int create) | |||
61 | return rt6_peer_ptr(rt); | 61 | return rt6_peer_ptr(rt); |
62 | 62 | ||
63 | rt6_bind_peer(rt, create); | 63 | rt6_bind_peer(rt, create); |
64 | return rt6_peer_ptr(rt); | 64 | return (rt6_has_peer(rt) ? rt6_peer_ptr(rt) : NULL); |
65 | } | 65 | } |
66 | 66 | ||
67 | static inline struct inet_peer *rt6_get_peer(struct rt6_info *rt) | 67 | static inline struct inet_peer *rt6_get_peer(struct rt6_info *rt) |