videoconverter: Free the converter config in free()

This commit is contained in:
Sebastian Dröge 2014-10-06 10:11:05 +03:00
parent 796fd16550
commit 2c4bd2296a

View file

@ -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);
}