mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
validate: Fix copying of action name
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7333>
This commit is contained in:
parent
ac393aa657
commit
604cc0901c
1 changed files with 2 additions and 2 deletions
|
@ -438,8 +438,8 @@ _action_copy (GstValidateAction * act)
|
|||
if (act->structure) {
|
||||
copy->structure = gst_structure_copy (act->structure);
|
||||
copy->type = gst_structure_get_name (copy->structure);
|
||||
if (!(act->name = gst_structure_get_string (copy->structure, "name")))
|
||||
act->name = "";
|
||||
if (!(copy->name = gst_structure_get_string (copy->structure, "name")))
|
||||
copy->name = "";
|
||||
}
|
||||
|
||||
if (act->priv->main_structure)
|
||||
|
|
Loading…
Reference in a new issue