mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
rtprtxsend: Fix unitialized variable compiler warning
variable 'rtx_ssrc' is used uninitialized whenever 'if' condition is false [-Werror,-Wsometimes-uninitialized]
This commit is contained in:
parent
3d8f078b61
commit
3bc53f0840
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ static SSRCRtxData *
|
|||
gst_rtp_rtx_send_get_ssrc_data (GstRtpRtxSend * rtx, guint32 ssrc)
|
||||
{
|
||||
SSRCRtxData *data;
|
||||
guint32 rtx_ssrc;
|
||||
guint32 rtx_ssrc = 0;
|
||||
gboolean consider = FALSE;
|
||||
|
||||
if (G_UNLIKELY (!g_hash_table_contains (rtx->ssrc_data,
|
||||
|
|
Loading…
Reference in a new issue