bgpd: Don't set NULL for struct thread at bgp_dump_interval_func()

NULL is already handled by thread_fetch().

Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
This commit is contained in:
Donatas Abraitis 2021-10-04 17:49:06 +03:00
parent d0bf22a10b
commit a33842f08d

View File

@ -165,13 +165,11 @@ static int bgp_dump_interval_add(struct bgp_dump *bgp_dump, int interval)
interval = interval interval = interval
- secs_into_day % interval; /* always > 0 */ - secs_into_day % interval; /* always > 0 */
} }
bgp_dump->t_interval = NULL;
thread_add_timer(bm->master, bgp_dump_interval_func, bgp_dump, thread_add_timer(bm->master, bgp_dump_interval_func, bgp_dump,
interval, &bgp_dump->t_interval); interval, &bgp_dump->t_interval);
} else { } else {
/* One-off dump: execute immediately, don't affect any scheduled /* One-off dump: execute immediately, don't affect any scheduled
* dumps */ * dumps */
bgp_dump->t_interval = NULL;
thread_add_event(bm->master, bgp_dump_interval_func, bgp_dump, thread_add_event(bm->master, bgp_dump_interval_func, bgp_dump,
0, &bgp_dump->t_interval); 0, &bgp_dump->t_interval);
} }
@ -453,7 +451,6 @@ static int bgp_dump_interval_func(struct thread *t)
{ {
struct bgp_dump *bgp_dump; struct bgp_dump *bgp_dump;
bgp_dump = THREAD_ARG(t); bgp_dump = THREAD_ARG(t);
bgp_dump->t_interval = NULL;
/* Reschedule dump even if file couldn't be opened this time... */ /* Reschedule dump even if file couldn't be opened this time... */
if (bgp_dump_open_file(bgp_dump) != NULL) { if (bgp_dump_open_file(bgp_dump) != NULL) {