vici: Remove unreachable code

If list is TRUE any type but VICI_LIST_END and VICI_LIST_ITEM (i.e.
including VICI_END) is already handled in the first block in this
function.
This commit is contained in:
Tobias Brunner 2018-09-07 11:17:06 +02:00
parent 954e75effa
commit a0c302f878
1 changed files with 3 additions and 11 deletions

View File

@ -102,18 +102,10 @@ bool vici_verify_type(vici_type_t type, u_int section, bool list)
DBG1(DBG_ENC, "'%N' outside of section", vici_type_names, type); DBG1(DBG_ENC, "'%N' outside of section", vici_type_names, type);
return FALSE; return FALSE;
} }
if (type == VICI_END) if (type == VICI_END && section)
{ {
if (section) DBG1(DBG_ENC, "'%N' within section", vici_type_names, type);
{ return FALSE;
DBG1(DBG_ENC, "'%N' within section", vici_type_names, type);
return FALSE;
}
if (list)
{
DBG1(DBG_ENC, "'%N' within list", vici_type_names, type);
return FALSE;
}
} }
return TRUE; return TRUE;
} }