From 0c65c4614d437a7273730bd23509ba332a76b5f2 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 6 Feb 2014 22:24:59 +0500 Subject: [PATCH] FS-6195 --resolve --- src/switch_rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 4e7ca5aca1..0c0963155e 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -3553,7 +3553,7 @@ static int rtp_common_read(switch_rtp_t *rtp_session, switch_payload_t *payload_ if ((other_rtp_session = switch_channel_get_private(other_channel, "__rtcp_audio_rtp_session")) && other_rtp_session->rtcp_sock_output && switch_test_flag(other_rtp_session, SWITCH_RTP_FLAG_ENABLE_RTCP)) { - *other_rtp_session->rtcp_send_msg.body = *rtp_session->rtcp_recv_msg.body; + other_rtp_session->rtcp_send_msg = rtp_session->rtcp_recv_msg; #ifdef ENABLE_SRTP if (switch_test_flag(other_rtp_session, SWITCH_RTP_FLAG_SECURE_SEND)) {