Fix timeout handling for call list.

git.mgm/mediaproxy-ng/2.0
Andreas Granig 14 years ago
parent 40a633faea
commit 35ce73bb92

@ -533,7 +533,8 @@ next:
for (i = hlp.del; i; i = n) {
n = i->next;
c = i->data;
c->prev->next = c->next;
if(c->prev)
c->prev->next = c->next;
call_destroy(c);
g_list_free_1(i);
}

Loading…
Cancel
Save