1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-08 11:26:59 +02:00

sap: dead code

This commit is contained in:
Rémi Denis-Courmont 2014-08-25 21:13:10 +03:00
parent 5001b70bc1
commit b744e8fce4

View File

@ -1449,12 +1449,8 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
if (cat == 'm')
goto media;
if (cat != 'm')
{
msg_Dbg (p_obj, "unexpected SDP line: 0x%02x", (int)cat);
goto error;
}
break;
msg_Dbg (p_obj, "unexpected SDP line: 0x%02x", (int)cat);
goto error;
default:
msg_Err (p_obj, "*** BUG in SDP parser! ***");