Index: main/rtp.c =================================================================== --- main/rtp.c (revision 216546) +++ main/rtp.c (working copy) @@ -1919,6 +1919,8 @@ if (!(rtcp = ast_calloc(1, sizeof(*rtcp)))) return NULL; + /* Clear all statistics values */ + memset(rtcp, 0, sizeof(*rtcp)); rtcp->s = rtp_socket(); rtcp->us.sin_family = AF_INET; rtcp->them.sin_family = AF_INET; @@ -1959,6 +1961,8 @@ if (!(rtp = ast_calloc(1, sizeof(*rtp)))) return NULL; + /* Clear all statistics values */ + memset(rtp, 0, sizeof(*rtp)); ast_rtp_new_init(rtp);