mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
webrtc: patch leak caused by early return
In webrtc_data_channel_send functions, both data and string, an early return on a non-open datachannel caused it to leak the buffer used for pushing to appsrc, meaning any buffer sent after leaving the open state was leaked in full. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4206>
This commit is contained in:
parent
87e3df6a38
commit
6341817018
1 changed files with 2 additions and 0 deletions
|
@ -871,6 +871,7 @@ webrtc_data_channel_send_data (GstWebRTCDataChannel * base_channel,
|
|||
GST_WEBRTC_DATA_CHANNEL_UNLOCK (channel);
|
||||
g_set_error (error, GST_WEBRTC_ERROR,
|
||||
GST_WEBRTC_ERROR_INVALID_STATE, "channel is not open");
|
||||
gst_buffer_unref (buffer);
|
||||
return FALSE;
|
||||
}
|
||||
GST_WEBRTC_DATA_CHANNEL_UNLOCK (channel);
|
||||
|
@ -945,6 +946,7 @@ webrtc_data_channel_send_string (GstWebRTCDataChannel * base_channel,
|
|||
GST_WEBRTC_DATA_CHANNEL_UNLOCK (channel);
|
||||
g_set_error (error, GST_WEBRTC_ERROR,
|
||||
GST_WEBRTC_ERROR_INVALID_STATE, "channel is not open");
|
||||
gst_buffer_unref (buffer);
|
||||
return FALSE;
|
||||
}
|
||||
GST_WEBRTC_DATA_CHANNEL_UNLOCK (channel);
|
||||
|
|
Loading…
Reference in a new issue