Browse Source

Fix timeout handling for call list.

git.mgm/mediaproxy-ng/2.0
Andreas Granig 14 years ago
parent
commit
35ce73bb92
1 changed files with 2 additions and 1 deletions
  1. +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);
} }


Loading…
Cancel
Save