From 7d9ab86b7ac7d1f039af92a58eb749a24811b5c9 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Sun, 4 May 2014 00:01:06 +0200 Subject: [PATCH] Fixes BGP crash when update with some attributes and empty NLRI is received. --- proto/bgp/packets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/bgp/packets.c b/proto/bgp/packets.c index b6239025..4464523d 100644 --- a/proto/bgp/packets.c +++ b/proto/bgp/packets.c @@ -1112,7 +1112,7 @@ bgp_do_rx_update(struct bgp_conn *conn, if (conn->state != BS_ESTABLISHED) /* fatal error during decoding */ return; - if (a0 && ! bgp_set_next_hop(p, a0)) + if (a0 && nlri_len && !bgp_set_next_hop(p, a0)) a0 = NULL; last_id = 0;