mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
rtsp-client: mikey memory leaks
https://bugzilla.gnome.org/show_bug.cgi?id=739383
This commit is contained in:
parent
bfc4d54404
commit
ef9dc6c9e4
1 changed files with 3 additions and 0 deletions
|
@ -1607,6 +1607,7 @@ handle_mikey_data (GstRTSPClient * client, GstRTSPContext * ctx,
|
|||
gst_caps_unref (caps);
|
||||
}
|
||||
gst_mikey_message_unref (msg);
|
||||
gst_buffer_unref (key);
|
||||
|
||||
return TRUE;
|
||||
|
||||
|
@ -1694,7 +1695,9 @@ handle_keymgmt (GstRTSPClient * client, GstRTSPContext * ctx, gchar * keymgmt)
|
|||
handle_mikey_data (client, ctx, data, size);
|
||||
}
|
||||
}
|
||||
g_strfreev (split);
|
||||
}
|
||||
g_strfreev (specs);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue