summaryrefslogtreecommitdiff
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@users.noreply.github.com>2018-08-13 14:56:56 -0400
committerGitHub <noreply@github.com>2018-08-13 14:56:56 -0400
commitcd22c8ca74597aa27cb11dd28b613d53c0a36abe (patch)
tree3e51217c34b49df896e84bf63f80d65a5c5a270d /zebra/zebra_rib.c
parent5487152318c7f56867a027f7214c849f6fb23e5c (diff)
parente8c8f2e064c674d1c0935aaf04091c97e117c62f (diff)
Merge pull request #2820 from opensourcerouting/err-prep
remove alloc return value checks + minor babeld cleanup
Diffstat (limited to 'zebra/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index 18bd6b6cbe..7b087b37ee 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -1965,7 +1965,6 @@ static struct meta_queue *meta_queue_new(void)
unsigned i;
new = XCALLOC(MTYPE_WORK_QUEUE, sizeof(struct meta_queue));
- assert(new);
for (i = 0; i < MQ_SIZE; i++) {
new->subq[i] = list_new();