Wireshark-bugs: [Wireshark-bugs] [Bug 11360] Wireshark crashes during Decode when "Use RTP Times

Date: Thu, 16 Jul 2015 13:16:50 +0000

Comment # 1 on bug 11360 from
To fix the bug, I think additional code similar to the following is needed:

if(seq < rp->info->info_seq_num)
  decoded_bytes = decode_rtp_packet(rp, &out_buff, decoders_hash);
else
  decoded_bytes=0;

if (decoded_bytes == 0)
{ seq = rp->info->info_seq_num; }


You are receiving this mail because:
  • You are watching all bug changes.