bar, module: particles may no longer return NULL in instantiate()

This commit is contained in:
Daniel Eklöf 2020-11-02 19:09:58 +01:00
parent fef40d18e1
commit c11a79c98d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 1 additions and 23 deletions

View file

@ -23,7 +23,6 @@ struct exposable *
module_begin_expose(struct module *mod)
{
struct exposable *e = mod->content(mod);
if (e != NULL)
e->begin_expose(e);
e->begin_expose(e);
return e;
}