summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2017-08-08 13:46:56 +0200
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2017-08-24 13:04:22 +0200
commitdc8964b907cfe0b868ee06bd5e737c57c0de1ee5 (patch)
tree9518e7a55f0e39a581906c8369ca793db4ff522d
parentac242757f62c90ea2b120239eef2ec800101f258 (diff)
libs: decoder: h264: remove unrequired NULL check
Coverity scan bug: Dereference after null check: Either the check against null is unnecessary, or there may be a null pointer dereference. In the original commit for fill_picture_gaps() (commit 5abd2b90) the prev_picture could be NULL, that's why the code did a null check. But, since commit 52adebe7, the previous reference frames are tracked, thus there is no need to check null anymore.
-rw-r--r--gst-libs/gst/vaapi/gstvaapidecoder_h264.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c
index 678e952f..da9b291e 100644
--- a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c
+++ b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c
@@ -3186,7 +3186,7 @@ fill_picture_gaps (GstVaapiDecoderH264 * decoder, GstVaapiPictureH264 * picture,
return TRUE;
prev_frame = priv->prev_ref_frames[picture->base.voc];
- g_assert (prev_frame != NULL);
+ g_assert (prev_frame != NULL && prev_frame->buffers[0] != NULL);
prev_picture = gst_vaapi_picture_ref (prev_frame->buffers[0]);
gst_vaapi_picture_ref (picture);
@@ -3220,10 +3220,7 @@ fill_picture_gaps (GstVaapiDecoderH264 * decoder, GstVaapiPictureH264 * picture,
break;
/* Create new picture */
- if (prev_picture)
- lost_picture = gst_vaapi_picture_h264_new_clone (prev_picture);
- else
- lost_picture = gst_vaapi_picture_h264_new (decoder);
+ lost_picture = gst_vaapi_picture_h264_new_clone (prev_picture);
if (!lost_picture)
goto error_allocate_picture;