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
dont fail on zero port in tcp controller
git.mgm/mediaproxy-ng/2.1
Richard Fuchs
13 years ago
parent
59d210e97d
commit
39207a0859
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
daemon/call.c
+ 1
- 1
daemon/call.c
View File
@ -455,7 +455,7 @@ static int streams_parse_func(char **a, void **ret, void *p) {
st
-
>
mediatype
=
strdup
(
a
[
2
]
?
:
"
"
)
;
/* XXX should use string chunks */
st
-
>
num
=
+
+
(
*
i
)
;
if
(
!
st
-
>
port
)
if
(
!
st
-
>
port
&
&
strcmp
(
a
[
1
]
,
"
0
"
)
)
goto
fail
;
*
ret
=
st
;
Write
Preview
Loading…
Cancel
Save