From: Mike Jerris Date: Mon, 9 Jul 2018 17:12:56 +0000 (-0400) Subject: FS-11222: [core] NACK for multiple packets sends wrong packet after the first one X-Git-Tag: v1.8.1~3^2~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e509472954a32018ef418db661f86044ad3c1dd;p=thirdparty%2Ffreeswitch.git FS-11222: [core] NACK for multiple packets sends wrong packet after the first one --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 2081daba52..16aba214c5 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -6486,7 +6486,7 @@ static switch_status_t process_rtcp_report(switch_rtp_t *rtp_session, rtcp_msg_t for (i = 0; i < ntohs(extp->header.length) - 2; i++) { - handle_nack(rtp_session, *nack); + handle_nack(rtp_session, nack[i]); } //switch_core_media_gen_key_frame(rtp_session->session);