mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
vulkandisplay: Also free the GSource
NULL checking the main_context does not help as we've just destroyed the GMainContext and set that field to NULL, not to mention it's unnecessary. Fixes a leak of display's GSource.
This commit is contained in:
parent
1b7e83c584
commit
b43651cf99
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ gst_vulkan_display_finalize (GObject * object)
|
|||
display->priv->event_thread = NULL;
|
||||
g_mutex_unlock (&display->priv->thread_lock);
|
||||
|
||||
if (display->main_context && display->event_source) {
|
||||
if (display->event_source) {
|
||||
g_source_destroy (display->event_source);
|
||||
g_source_unref (display->event_source);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue