examples/ges-ui: Remove useless NULL check

g_new0() will abort if allocation fails.

CID 1139842
This commit is contained in:
Sebastian Dröge 2017-02-28 12:50:31 +02:00
parent fe2efd161d
commit da399fb196

View file

@ -1259,9 +1259,6 @@ app_init (void)
ret->selected_type = G_TYPE_NONE;
if (!ret)
return NULL;
if (!(ret->timeline = ges_timeline_new ()))
goto fail;