mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Merged revisions 315349 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r315349 | rmudgett | 2011-04-25 16:49:00 -0500 (Mon, 25 Apr 2011) | 9 lines When using MGCP realtime gateway definitions, random crashes occur. Fixed incorrect linked list node removal for realtime gateways. (closes issue #18291) Reported by: nahuelgreco Patches: dangling-pointers-when-pruning.patch uploaded by nahuelgreco (license 162) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@315350 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3770,7 +3770,7 @@ static void *do_monitor(void *data)
|
||||
{
|
||||
int res;
|
||||
int reloading;
|
||||
struct mgcp_gateway *g, *gprev, *gnext;
|
||||
struct mgcp_gateway *g, *gprev;
|
||||
/*struct mgcp_gateway *g;*/
|
||||
/*struct mgcp_endpoint *e;*/
|
||||
/*time_t thispass = 0, lastpass = 0;*/
|
||||
@@ -3840,12 +3840,10 @@ static void *do_monitor(void *data)
|
||||
g = gateways;
|
||||
gprev = NULL;
|
||||
while(g) {
|
||||
gnext = g->next;
|
||||
if(g->realtime) {
|
||||
if(mgcp_prune_realtime_gateway(g)) {
|
||||
if(gprev) {
|
||||
gprev->next = gnext;
|
||||
gprev = g;
|
||||
gprev->next = g->next;
|
||||
} else {
|
||||
gateways = g->next;
|
||||
}
|
||||
@@ -3859,7 +3857,7 @@ static void *do_monitor(void *data)
|
||||
} else {
|
||||
gprev = g;
|
||||
}
|
||||
g = gnext;
|
||||
g = g->next;
|
||||
}
|
||||
ast_mutex_unlock(&gatelock);
|
||||
lastrun = time(NULL);
|
||||
|
Reference in New Issue
Block a user