Avoid segfault
This commit is contained in:
parent
7972248d5d
commit
05a845ed8e
1 changed files with 1 additions and 3 deletions
|
@ -368,10 +368,8 @@ rip_timer(timer *t)
|
||||||
WALK_LIST( rif, P->interfaces ) {
|
WALK_LIST( rif, P->interfaces ) {
|
||||||
struct iface *iface = rif->iface;
|
struct iface *iface = rif->iface;
|
||||||
|
|
||||||
if (rif->patt->mode == IM_QUIET)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (!iface) continue;
|
if (!iface) continue;
|
||||||
|
if (rif->patt->mode == IM_QUIET) continue;
|
||||||
if (!(iface->flags & IF_UP)) continue;
|
if (!(iface->flags & IF_UP)) continue;
|
||||||
if (iface->flags & (IF_IGNORE | IF_LOOPBACK)) continue;
|
if (iface->flags & (IF_IGNORE | IF_LOOPBACK)) continue;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue