Fixes Bug 531 (Incorrect Interpretation of Bit vector and RLE RTCP XR Blocks).

svn path=/trunk/; revision=16921
This commit is contained in:
Luis Ontanon 2005-12-31 02:19:24 +00:00
parent 5ff580e14f
commit ada9131e3b
1 changed files with 1 additions and 1 deletions

View File

@ -1307,7 +1307,7 @@ dissect_rtcp_xr(tvbuff_t *tvb, packet_info *pinfo _U_, int offset, proto_tree *t
proto_tree_add_text(chunks_tree, tvb, offset, 2,
"Chunk: %u -- Null Terminator ",
count);
} else if (( value & 0x8000 )) {
} else if ( ! ( value & 0x8000 )) {
const gchar* run_type = (value & 0x4000) ? "1s" : "0s";
value &= 0x7FFF;
proto_tree_add_text(chunks_tree, tvb, offset, 2,