GNOME Bugzilla – Bug 788929
Gstreamer: Fix for possible crash due to null pointer dereferencing in public GstQueueArray API:gst_queue_array_pop_head
Last modified: 2017-10-13 11:05:44 UTC
In File : gstqueuearray.c Function : gpointer gst_queue_array_pop_head (GstQueueArray * array)) Line No. 158 There is a possibility of crash if array is null, due to dereferencing of null pointer. gpointer gst_queue_array_pop_head (GstQueueArray * array) { gpointer p_struct; /* empty array */ if (G_UNLIKELY (array->length == 0)) return NULL;
Created attachment 361504 [details] [review] Gstreamer: Fix for possible crash due to null pointer dereferencing in public GstQueueArray API:gst_queue_array_pop_head Please review and share the feedback
This is the same as bug #788838, please make one single patch for all. *** This bug has been marked as a duplicate of bug 788838 ***