summaryrefslogtreecommitdiff
path: root/gst-libs/gst/video/video-format.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/video/video-format.c')
-rw-r--r--gst-libs/gst/video/video-format.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gst-libs/gst/video/video-format.c b/gst-libs/gst/video/video-format.c
index 394ad9919..6168b99dd 100644
--- a/gst-libs/gst/video/video-format.c
+++ b/gst-libs/gst/video/video-format.c
@@ -7056,13 +7056,15 @@ generate_raw_video_formats (gpointer data)
struct RawVideoFormats *all = g_new (struct RawVideoFormats, 1);
gchar *tmp;
guint i;
+ gboolean res G_GNUC_UNUSED;
g_value_init (&list, GST_TYPE_LIST);
/* Workaround a bug in our parser that would lead to segfaults
* when deserializing container types using static strings,
* see https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/446 */
tmp = g_strdup (GST_VIDEO_FORMATS_ALL);
- g_assert (gst_value_deserialize (&list, tmp));
+ res = gst_value_deserialize (&list, tmp);
+ g_assert (res);
g_free (tmp);
all->n = gst_value_list_get_size (&list);