From: Donald Sharp Date: Mon, 19 Jun 2017 22:24:24 +0000 (-0400) Subject: zebra: Missing break statement causes crash in zebra X-Git-Tag: frr-4.0-dev~464^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F897%2Fhead;p=mirror%2Ffrr.git zebra: Missing break statement causes crash in zebra Zebra receiving a macip_del message will automatically call into the set_master function( a pim function ). Add missing break statement Ticket: CM-16841 Signed-off-by: Donald Sharp Reviewed-by: Don Slice --- diff --git a/zebra/zserv.c b/zebra/zserv.c index ab46a1f29f..97f7122774 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -2432,6 +2432,7 @@ static int zebra_client_read(struct thread *thread) break; case ZEBRA_REMOTE_MACIP_DEL: zebra_vxlan_remote_macip_del(client, sock, length, zvrf); + break; case ZEBRA_INTERFACE_SET_MASTER: zread_interface_set_master(client, sock, length); break;