mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
glviewconvert: Fix broken validity check
This commit is contained in:
parent
b77f8e172a
commit
0e1303a294
1 changed files with 2 additions and 2 deletions
|
@ -718,8 +718,8 @@ _expand_par_for_half_aspect (GstCaps * in, gboolean vertical_half_aspect)
|
|||
features ? gst_caps_features_copy (features) : NULL);
|
||||
|
||||
gst_structure_free (s);
|
||||
if (features);
|
||||
gst_caps_features_free (features);
|
||||
if (features)
|
||||
gst_caps_features_free (features);
|
||||
}
|
||||
|
||||
gst_caps_unref (in);
|
||||
|
|
Loading…
Reference in a new issue