mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
v4l2: object: Fix condition check to emit error
The check was reversed, so we could only emit a pipeline error if there was no element associated with the object. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7540>
This commit is contained in:
parent
86dddfa61c
commit
d35f348af3
1 changed files with 1 additions and 1 deletions
|
@ -1305,7 +1305,7 @@ failed:
|
|||
{
|
||||
g_free (format);
|
||||
|
||||
if (v4l2object->element)
|
||||
if (!v4l2object->element)
|
||||
return FALSE;
|
||||
|
||||
GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS,
|
||||
|
|
Loading…
Reference in a new issue