From e66e6c2119e9de2f8012e587eafe752723706265 Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Fri, 19 May 2000 16:57:40 +0000 Subject: If community list is not defined, act as it is empty. --- filter/filter.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'filter') diff --git a/filter/filter.c b/filter/filter.c index dd37008..f6d1b3f 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -396,20 +396,29 @@ interpret(struct f_inst *what) if ((!e) && (f_flags & FF_FORCE_TMPATTR)) e = ea_find( (*f_rte)->attrs->eattrs, what->a2.i ); - if (!e) { - res.type = T_VOID; - break; - } switch (what->aux & EAF_TYPE_MASK) { case EAF_TYPE_INT: + if (!e) { + res.type = T_VOID; + break; + } res.type = T_INT; res.val.i = e->u.data; break; case EAF_TYPE_AS_PATH: + if (!e) { + res.type = T_VOID; + break; + } res.type = T_PATH; res.val.ad = e->u.ptr; break; case EAF_TYPE_INT_SET: + if (!e) { + res.type = T_CLIST; + res.val.ad = adata_empty(f_pool); + break; + } res.type = T_CLIST; res.val.ad = e->u.ptr; break; -- cgit v1.2.3