gltestsrc: Fix potential NULL pointer dereference if we fail without GError
Which can happen here if we just propagate an error that happened elsewhere, e.g. FBO failed. CID 1364604
This commit is contained in:
parent
a064590912
commit
0661a5aded
@ -675,9 +675,13 @@ unsupported_gl_api:
|
||||
}
|
||||
context_error:
|
||||
{
|
||||
if (error) {
|
||||
GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, ("%s", error->message),
|
||||
(NULL));
|
||||
g_clear_error (&error);
|
||||
} else {
|
||||
GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL), (NULL));
|
||||
}
|
||||
if (src->context)
|
||||
gst_object_unref (src->context);
|
||||
src->context = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user