asset: Avoid dereferencing NULL pointer

CID 1461286
This commit is contained in:
Thibault Saunier 2020-04-09 11:24:44 -04:00
parent c5cff98143
commit d1444581f6
2 changed files with 5 additions and 5 deletions

View file

@ -606,7 +606,7 @@ ges_project_class_init (GESProjectClass * klass)
* @project: the #GESProject on which a problem happend when creted a #GESAsset
* @timeline: The timeline that failed loading
* @error: The #GError defining the error that occured
*
*
* Since: 1.18
*/
_signals[ERROR_LOADING] =
@ -738,10 +738,11 @@ new_asset_cb (GESAsset * source, GAsyncResult * res, GESProject * project)
return;
}
ges_asset_finish_proxy (asset);
ges_project_add_asset (project, asset);
if (asset)
if (asset) {
ges_asset_finish_proxy (asset);
ges_project_add_asset (project, asset);
gst_object_unref (asset);
}
}
/**

View file

@ -1244,7 +1244,6 @@ _trim_transition (GESTimeline * timeline, GESTimelineElement * element,
return FALSE;
}
gboolean
timeline_trim_object (GESTimeline * timeline, GESTimelineElement * object,
guint32 new_layer_priority, GList * layers, GESEdge edge, guint64 position)