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

@ -738,10 +738,11 @@ new_asset_cb (GESAsset * source, GAsyncResult * res, GESProject * project)
return;
}
if (asset) {
ges_asset_finish_proxy (asset);
ges_project_add_asset (project, asset);
if (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)