Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions modules/proto_msrp/msrp_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,13 @@ int parse_msrp_msg( char* buf, int len, struct msrp_msg *msg)
case HDR_EXPIRES_T:
link_hdr( expires, hf);
break;
case HDR_OTHER_T:
break;
case HDR_ERROR_T:
default:
LM_INFO("bad header field\n");
goto err_free_hf;
case HDR_OTHER_T:
default:
/* There can be other headers in the MSRP but we don't need to use them, so ignoring it */
break;
}

/* add the header to the list*/
Expand Down