mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
animator: Fix NULL check
This commit is contained in:
parent
fa9be0ba73
commit
cbcc84022e
@ -1458,7 +1458,7 @@ again:
|
||||
g_hash_table_remove_all (priv->properties);
|
||||
|
||||
/* if the animator is already running reinitialize internal iterators */
|
||||
if (clutter_timeline_is_playing (priv->timeline))
|
||||
if (priv->timeline != NULL && clutter_timeline_is_playing (priv->timeline))
|
||||
animation_animator_started (priv->timeline, animator);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user