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
823
Wiki
Activity
Browse Source
Fix timeout handling for call list.
git.mgm/mediaproxy-ng/2.0
Andreas Granig
14 years ago
parent
40a633faea
commit
35ce73bb92
1 changed files
with
2 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
daemon/call.c
+ 2
- 1
daemon/call.c
View File
@ -533,7 +533,8 @@ next:
for
(
i
=
hlp
.
del
;
i
;
i
=
n
)
{
for
(
i
=
hlp
.
del
;
i
;
i
=
n
)
{
n
=
i
-
>
next
;
n
=
i
-
>
next
;
c
=
i
-
>
data
;
c
=
i
-
>
data
;
c
-
>
prev
-
>
next
=
c
-
>
next
;
if
(
c
-
>
prev
)
c
-
>
prev
-
>
next
=
c
-
>
next
;
call_destroy
(
c
)
;
call_destroy
(
c
)
;
g_list_free_1
(
i
)
;
g_list_free_1
(
i
)
;
}
}
Write
Preview
Loading…
Cancel
Save