mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-03 22:59:56 +00:00
rtp: buffer: don't access NULL buffer pointer
unmap will set rtpbuffer->buffer to NULL, so we need to save the pointer to access it while the RTP buffer is unmapped. https://bugzilla.gnome.org/show_bug.cgi?id=753001
This commit is contained in:
parent
232bdf1711
commit
04c69952c0
1 changed files with 3 additions and 1 deletions
|
@ -787,8 +787,10 @@ ensure_buffers (GstRTPBuffer * rtp)
|
|||
}
|
||||
|
||||
if (changed) {
|
||||
GstBuffer *buf = rtp->buffer;
|
||||
|
||||
gst_rtp_buffer_unmap (rtp);
|
||||
gst_buffer_remove_memory_range (rtp->buffer, pos, -1);
|
||||
gst_buffer_remove_memory_range (buf, pos, -1);
|
||||
gst_rtp_buffer_map (rtp->buffer, GST_MAP_READWRITE, rtp);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue