mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
camerabin2: remove unneeded check
A message may not be NULL in the message handling function (and nothing there sets it to NULL). Coverity 1139848
This commit is contained in:
parent
75c09f8d03
commit
c3a2e0ad97
1 changed files with 2 additions and 2 deletions
|
@ -1112,8 +1112,8 @@ gst_camera_bin_handle_message (GstBin * bin, GstMessage * message)
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (message)
|
|
||||||
GST_BIN_CLASS (parent_class)->handle_message (bin, message);
|
GST_BIN_CLASS (parent_class)->handle_message (bin, message);
|
||||||
|
|
||||||
if (dec_counter)
|
if (dec_counter)
|
||||||
GST_CAMERA_BIN2_PROCESSING_DEC (camerabin);
|
GST_CAMERA_BIN2_PROCESSING_DEC (camerabin);
|
||||||
|
|
Loading…
Reference in a new issue