diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-24 19:36:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-24 19:36:30 -0400 |
| commit | b5b583aa8d9318a36a89129b08dee7f9fdedcf68 (patch) | |
| tree | 55ddd237d50698bc0a53a42b41def519b337c935 /bgpd/rfapi/rfapi_rib.c | |
| parent | 47473bbbc7cc919eace33812419c0eb76e4cda68 (diff) | |
| parent | b11b57723b963fb5d0ab11748b7957f0b7fa5d37 (diff) | |
Merge pull request #1357 from opensourcerouting/coverity_fixes
Coverity fixes
Diffstat (limited to 'bgpd/rfapi/rfapi_rib.c')
| -rw-r--r-- | bgpd/rfapi/rfapi_rib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/rfapi/rfapi_rib.c b/bgpd/rfapi/rfapi_rib.c index 92cd1888ee..36ae6e7273 100644 --- a/bgpd/rfapi/rfapi_rib.c +++ b/bgpd/rfapi/rfapi_rib.c @@ -1668,7 +1668,7 @@ void rfapiRibUpdatePendingNode( struct prefix pfx_vn; - rfapiRaddr2Qprefix(&rfd->vn_addr, &pfx_vn); + assert(!rfapiRaddr2Qprefix(&rfd->vn_addr, &pfx_vn)); if (prefix_same(&pfx_vn, &pfx_nh)) continue; } |
