chan_iax2.c: Ensure all IEs are displayed when dumping frame contents.

When IAX2 debugging was enabled (`iax2 set debug on`), if the last IE
in a frame was one that may not have any data - such as the CALLTOKEN
IE in an NEW request - it was not getting displayed.
pull/419/head
Sean Bright 1 year ago committed by asterisk-org-access-app[bot]
parent 293577f1d9
commit 52968038ed

@ -424,7 +424,7 @@ static void dump_ies(unsigned char *iedata, int len)
if (len < 2)
return;
while(len > 2) {
while(len >= 2) {
ie = iedata[0];
ielen = iedata[1];
if (ielen + 2> len) {

Loading…
Cancel
Save