gl/x11: silence runtime warning

g_main_loop_quit: assertion 'loop != NULL' failed
This commit is contained in:
Matthew Waters 2014-07-31 18:36:58 +10:00 committed by Tim-Philipp Müller
parent 9426c0793e
commit d3077a890c

View file

@ -619,7 +619,8 @@ gst_gl_window_x11_quit (GstGLWindow * window)
GST_LOG ("sending quit");
g_main_loop_quit (window_x11->loop);
if (window_x11->loop)
g_main_loop_quit (window_x11->loop);
GST_LOG ("quit sent");
}