[828/906] context: refcount the display

This commit is contained in:
Matthew Waters 2013-10-22 21:48:00 +11:00 committed by Tim-Philipp Müller
parent b91eb6b557
commit ac0db99c94

View file

@ -172,7 +172,7 @@ gst_gl_context_new (GstGLDisplay * display)
return NULL;
}
context->priv->display = display;
context->priv->display = gst_object_ref (display);
return context;
}
@ -206,6 +206,7 @@ gst_gl_context_finalize (GObject * object)
}
gst_object_unref (context->window);
gst_object_unref (context->priv->display);
if (context->gl_vtable) {
g_slice_free (GstGLFuncs, context->gl_vtable);