GNOME Bugzilla – Bug 788928
Gstreamer: Fix for possible crash due to null pointer dereferencing in public GstQueueArray API:gst_queue_array_pop_head_struct
Last modified: 2017-10-13 10:57:50 UTC
In File : gstqueuearray.c Function : gpointer gst_queue_array_pop_head_struct (GstQueueArray * array)) Line No. 129 There is a possibility of crash if array is null, due to dereferencing of null pointer. gpointer gst_queue_array_pop_head_struct (GstQueueArray * array) { gpointer p_struct; /* empty array */ if (G_UNLIKELY (array->length == 0)) return NULL;
Created attachment 361503 [details] [review] [PATCH] Gstreamer: Fix for possible crash due to null pointer dereferencing in public GstQueueArray API:gst_queue_array_pop_head_struct Please review and share the feedback
Please squash this with the patch in bug #788838, thanks. *** This bug has been marked as a duplicate of bug 788838 ***