Comment # 6
on bug 13212
from Vitaly
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.