diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-10-07 13:25:43 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-10-08 08:56:42 +0300 | 
| commit | d573b8f8639350cfa1edeec6b8e1cd422008ea77 (patch) | |
| tree | a0abab9b19e11a7d663ba81194db7463521594b1 /ospf6d/ospf6_top.c | |
| parent | ae84497d13b2970febfa71b45b6d4b021bb27804 (diff) | |
ospf6d: Do not explicitly set the thread pointer to NULL
FRR should only ever use the appropriate THREAD_ON/THREAD_OFF
semantics.  This is espacially true for the functions we
end up calling the thread for.
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'ospf6d/ospf6_top.c')
| -rw-r--r-- | ospf6d/ospf6_top.c | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/ospf6d/ospf6_top.c b/ospf6d/ospf6_top.c index 6fe7055202..9e3bb4895a 100644 --- a/ospf6d/ospf6_top.c +++ b/ospf6d/ospf6_top.c @@ -432,7 +432,6 @@ static struct ospf6 *ospf6_create(const char *name)  	o->rt_aggr_tbl = route_table_init();  	o->aggr_delay_interval = OSPF6_EXTL_AGGR_DEFAULT_DELAY; -	o->t_external_aggr = NULL;  	o->aggr_action = OSPF6_ROUTE_AGGR_NONE;  	o->fd = -1;  | 
