eolian: silence static analyzer null check (CID 1369018)

This commit is contained in:
Daniel Kolesa 2017-02-10 16:56:35 +01:00
parent db238d606c
commit d53ed9b0db
1 changed files with 4 additions and 1 deletions

View File

@ -1568,7 +1568,10 @@ parse_implement(Eo_Lexer *ls, Eina_Bool iface)
}
eina_stringshare_del(iname);
if (!impl)
eo_lexer_syntax_error(ls, "implement of non-existent function");
{
eo_lexer_syntax_error(ls, "implement of non-existent function");
return;
}
eo_lexer_get(ls);
goto propbeg;
}