From ff16221df5b9991b191279958a64bad6fc09a929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Mon, 28 Oct 2024 18:34:30 +0100 Subject: [PATCH] ges-structured-interface: fix double free This was introduced in commit 6233eb0f --- subprojects/gst-editing-services/ges/ges-structured-interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-editing-services/ges/ges-structured-interface.c b/subprojects/gst-editing-services/ges/ges-structured-interface.c index b3576aadc7..6f0a784366 100644 --- a/subprojects/gst-editing-services/ges/ges-structured-interface.c +++ b/subprojects/gst-editing-services/ges/ges-structured-interface.c @@ -198,7 +198,7 @@ _check_fields (GstStructure * structure, FieldsError fields_error, g_list_free (fields_error.invalid_fields); g_string_free (msg, TRUE); - g_list_free (fields_error.invalid_fields); + fields_error.invalid_fields = NULL; return FALSE; }