From eb7244e83cdef48bbc803b67f689cdcd56224f54 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 29 Jun 2021 10:48:14 -0400 Subject: [PATCH] TT#14008 fix minimum XR packet size check closes #1296 Change-Id: I03340107d8e2f331842e873a81867989232f8ede --- daemon/rtcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon/rtcp.c b/daemon/rtcp.c index fda0616b9..78c5fdac7 100644 --- a/daemon/rtcp.c +++ b/daemon/rtcp.c @@ -463,6 +463,7 @@ static const int min_packet_sizes[] = { [RTCP_PT_APP] = sizeof(struct app_packet), [RTCP_PT_RTPFB] = sizeof(struct fb_packet), [RTCP_PT_PSFB] = sizeof(struct fb_packet), + [RTCP_PT_XR] = sizeof(struct xr_packet), }; static const xr_handler_func xr_handler_funcs[] = {