mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
videoconverter: Free the converter config in free()
This commit is contained in:
parent
796fd16550
commit
2c4bd2296a
1 changed files with 3 additions and 0 deletions
|
@ -201,6 +201,9 @@ gst_video_converter_free (GstVideoConverter * convert)
|
|||
g_free (convert->tmplines);
|
||||
g_free (convert->errline);
|
||||
|
||||
if (convert->config)
|
||||
gst_structure_free (convert->config);
|
||||
|
||||
g_free (convert);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue