Fixed a crash in source address lookup
This commit is contained in:
@@ -861,15 +861,18 @@ static host_t *get_route(private_kernel_netlink_net_t *this, host_t *dest,
|
|||||||
{
|
{
|
||||||
/* got a source address */
|
/* got a source address */
|
||||||
new_src = host_create_from_chunk(msg->rtm_family, rta_src, 0);
|
new_src = host_create_from_chunk(msg->rtm_family, rta_src, 0);
|
||||||
if (get_vip_refcount(this, src))
|
if (new_src)
|
||||||
{ /* skip source address if it is installed by us */
|
|
||||||
new_src->destroy(new_src);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
DESTROY_IF(src);
|
if (get_vip_refcount(this, new_src))
|
||||||
src = new_src;
|
{ /* skip source address if it is installed by us */
|
||||||
best = msg->rtm_dst_len;
|
new_src->destroy(new_src);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DESTROY_IF(src);
|
||||||
|
src = new_src;
|
||||||
|
best = msg->rtm_dst_len;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user