wpe: Plug a leak

We were freeing after returning

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2273>
This commit is contained in:
Thibault Saunier 2021-05-21 10:13:01 -04:00
parent ca1812f38c
commit d93131bfee
2 changed files with 7 additions and 3 deletions

View file

@ -169,7 +169,7 @@ G_DEFINE_TYPE_WITH_CODE (GstWpeSrc, gst_wpe_src, GST_TYPE_BIN,
* GstWpeSrc!video
*
* Since: 1.20
*/
*/
static GstStaticPadTemplate video_src_factory =
GST_STATIC_PAD_TEMPLATE ("video", GST_PAD_SRC, GST_PAD_SOMETIMES,
GST_STATIC_CAPS ("video/x-raw(memory:GLMemory), "
@ -194,7 +194,7 @@ GST_STATIC_PAD_TEMPLATE ("video", GST_PAD_SRC, GST_PAD_SOMETIMES,
* #GstPad.
*
* Since: 1.20
*/
*/
static GstStaticPadTemplate audio_src_factory =
GST_STATIC_PAD_TEMPLATE ("audio_%u", GST_PAD_SRC, GST_PAD_SOMETIMES,
GST_STATIC_CAPS ( \

View file

@ -44,6 +44,7 @@ create_gerror_bus_msg (GstElement * element, GstMessage * message)
{
GError *error;
gchar *debug_str, *details_structure, *src_path;
WebKitUserMessage *msg;
const GstStructure *details = NULL;
if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_ERROR) {
@ -60,7 +61,8 @@ create_gerror_bus_msg (GstElement * element, GstMessage * message)
details_structure =
details ? gst_structure_to_string (details) : g_strdup ("");
src_path = gst_object_get_path_string (GST_MESSAGE_SRC (message));
return webkit_user_message_new ("gstwpe.bus_gerror_message",
msg = webkit_user_message_new ("gstwpe.bus_gerror_message",
/* (message_type, src_path, error_domain, error_code, msg, debug_str, details_structure) */
g_variant_new ("(sssusss)",
gst_message_type_get_name (GST_MESSAGE_TYPE (message)),
@ -69,6 +71,8 @@ create_gerror_bus_msg (GstElement * element, GstMessage * message)
error->code, error->message, debug_str, details_structure)
);
g_free (src_path);
return msg;
}
/* Those types can't be deserialized on the receiver