Wireshark-bugs: [Wireshark-bugs] [Bug 13212] Wireshark shows "MS Video Source Request" in a RTCP

Date: Wed, 07 Dec 2016 14:33:04 +0000

Comment # 6 on bug 13212 from
Great.

A little question:

What about "length" reducing in the MS-DSH processing loop? It seams that the
length should be reduced by 4 (the length of msi) on each step of the loop. It
is reduced by 2 in the current code ( "length--" in the loop _expression_ and
"length--" in the loop statement).

Something like this ( starting epan/dissectors/packet-rtcp.c:1055):

while ( length >= 4 ... )
        {
            ...
            length -=4;
        }


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