MT#55283 remove debugging remnants

Closes #1958

Change-Id: I4a08b2f506a68610e378255a545a972e734bc8b7
(cherry picked from commit 4574af06be)
(cherry picked from commit c01d9b7769)
mr13.3.1
Richard Fuchs 7 months ago
parent 12fee080f4
commit a85d9251b1

@ -1271,14 +1271,10 @@ int sdp_parse(str *body, sdp_sessions_q *sessions, const sdp_ng_flags *flags) {
switch (line_code) {
case 'v':
errstr = "Error in v= line";
if (value.len != 1) {
abort();
if (value.len != 1)
goto error;
}
if (value.s[0] != '0') {
abort();
if (value.s[0] != '0')
goto error;
}
new_session:
session = g_new0(__typeof(*session), 1);

Loading…
Cancel
Save