From: Anthony Minessale Date: Thu, 6 Feb 2014 17:24:05 +0000 (+0500) Subject: FS-6195 --resolve X-Git-Tag: v1.5.8~25^2~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03c723cfd1906ebee6df4c3f61fec91671ad3e9a;p=thirdparty%2Ffreeswitch.git FS-6195 --resolve --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 1d297a16b9..f493d046ef 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -5258,7 +5258,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_rtp_test_flag(other_rtp_session, SWITCH_RTP_FLAG_ENABLE_RTCP)) { - *other_rtp_session->rtcp_send_msg.body = *rtp_session->rtcp_recv_msg_p->body; + other_rtp_session->rtcp_send_msg = rtp_session->rtcp_recv_msg; if (rtp_session->rtcp_recv_msg_p->header.type == 206) { rtcp_ext_msg_t *extp = (rtcp_ext_msg_t *) rtp_session->rtcp_recv_msg_p;