Path attribute can be missing if we process a packet with empty NLRI section.

This commit is contained in:
Martin Mares 2000-04-27 22:31:11 +00:00
parent 8f6accb5bb
commit 54896cbdba

View file

@ -828,8 +828,7 @@ bgp_decode_attrs(struct bgp_conn *conn, byte *attr, unsigned int len, struct lin
/* If the AS path attribute contains our AS, reject the routes */
e = ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
ASSERT(e);
if (bgp_path_loopy(bgp, e))
if (e && bgp_path_loopy(bgp, e))
{
DBG("BGP: Path loop!\n");
return NULL;