diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-07-10 16:08:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-10 16:08:35 -0400 |
| commit | 39c381ba37789bb95ad7699662531c14e79aff98 (patch) | |
| tree | ea7a55a257bbc83c174e1ccece840ae098b89fe6 | |
| parent | 373edbbc9975f2ebeae7d019eb386f48b53d2696 (diff) | |
| parent | 5e69d308a1b6099ff5df3c16a1f10660b1a96bf6 (diff) | |
Merge pull request #6715 from volta-networks/fix_isis_circ_sa
isisd: fix Coverity warning
| -rw-r--r-- | isisd/isis_circuit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_circuit.c b/isisd/isis_circuit.c index 03d7b3d07b..e0e82e4725 100644 --- a/isisd/isis_circuit.c +++ b/isisd/isis_circuit.c @@ -721,7 +721,7 @@ void isis_circuit_down(struct isis_circuit *circuit) #endif /* ifndef FABRICD */ /* log adjacency changes if configured to do so */ - if (circuit->area && circuit->area->log_adj_changes) { + if (circuit->area->log_adj_changes) { struct isis_adjacency *adj = NULL; if (circuit->circ_type == CIRCUIT_T_P2P) { adj = circuit->u.p2p.neighbor; |
