summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2007-12-04 15:16:03 +0000
committerOlle Johansson <oej@edvina.net>2007-12-04 15:16:03 +0000
commit4d2368f20210b084ebba4d3ff56a1daf04c86f07 (patch)
treef55a064509589d4c554d108850572d026a2bc54d /apps
parent25cbb792b911b19e26ce81a5a74b445d5a40432a (diff)
(closes issue #11431)
Reported by: Laureano Patches: app_queue.c.patch uploaded by Laureano (license 265) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@90854 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 441eab021..a6cf340be 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -729,15 +729,15 @@ static void *device_state_thread(void *data)
handle_statechange(sc);
- free(sc);
+ ast_free(sc);
sc = NULL;
}
if (sc)
- free(sc);
+ ast_free(sc);
while ((sc = AST_LIST_REMOVE_HEAD(&device_state.state_change_q, entry)))
- free(sc);
+ ast_free(sc);
return NULL;
}
@@ -2829,7 +2829,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
break;
} else {
ao2_ref(cur, -1);
- free(tmp);
+ ast_free(tmp);
}
}
if (qe->expire && (!qe->parent->timeout || (qe->expire - now) <= qe->parent->timeout))