rtph265depay: prevent trying to get 0 bytes from adapter
This causes an assertion and would lead to getting a NULL instead of a buffer. Without proper checking this would easily lead to a segfault. Related to rpth264depay: https://bugzilla.gnome.org/show_bug.cgi?id=737199
This commit is contained in:
parent
8a6cc4ed27
commit
9379933607
@ -1167,10 +1167,12 @@ gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
|
|||||||
}
|
}
|
||||||
|
|
||||||
outsize = gst_adapter_available (rtph265depay->adapter);
|
outsize = gst_adapter_available (rtph265depay->adapter);
|
||||||
|
if (outsize > 0) {
|
||||||
outbuf = gst_adapter_take_buffer (rtph265depay->adapter, outsize);
|
outbuf = gst_adapter_take_buffer (rtph265depay->adapter, outsize);
|
||||||
|
outbuf =
|
||||||
outbuf = gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp,
|
gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp,
|
||||||
marker);
|
marker);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 49:
|
case 49:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user