This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
MT#55283 remove debugging remnants
Closes
#1958
Change-Id: I4a08b2f506a68610e378255a545a972e734bc8b7
pull/1964/head
Richard Fuchs
6 months ago
parent
d52db9c6bb
commit
4574af06be
1 changed files
with
2 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-6
daemon/sdp.c
+ 2
- 6
daemon/sdp.c
View File
@ -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
)
;
Write
Preview
Loading…
Cancel
Save