From Olivier Crete via bug 5761: Compute the FCI size correctly for RTCP RTPFB.

svn path=/trunk/; revision=37052
This commit is contained in:
Chris Maynard 2011-05-10 18:52:37 +00:00
parent 7050847bc9
commit 025f9ee4db
1 changed files with 4 additions and 4 deletions

View File

@ -852,11 +852,11 @@ dissect_rtcp_rtpfb( tvbuff_t *tvb, int offset, proto_tree *rtcp_tree, proto_item
} else if (rtcp_rtpfb_fmt == 4) {
offset = dissect_rtcp_rtpfb_tmmbr(tvb, offset, rtcp_tree, top_item, counter, 1);
} else {
/* Unknown FMT */
proto_tree_add_item(rtcp_tree, hf_rtcp_fci, tvb, offset, packet_length - offset, FALSE );
offset = start_offset + packet_length;
/* Unknown FMT */
proto_tree_add_item(rtcp_tree, hf_rtcp_fci, tvb, offset, start_offset + packet_length - offset, FALSE );
offset = start_offset + packet_length;
}
}
}
return offset;
}