mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
rtpsbcdepay: Fix potential NULL pointer dereference
CID 1418864
This commit is contained in:
parent
7d80fa4bbf
commit
263494f9c7
1 changed files with 1 additions and 1 deletions
|
@ -366,7 +366,7 @@ gst_rtp_sbc_depay_process (GstRTPBaseDepayload * base, GstRTPBuffer * rtp)
|
|||
}
|
||||
}
|
||||
|
||||
if (depay->ignore_timestamps) {
|
||||
if (depay->ignore_timestamps && data) {
|
||||
GstClockTime duration;
|
||||
|
||||
gst_audio_stream_align_process (depay->stream_align,
|
||||
|
|
Loading…
Reference in a new issue