aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/main/channel.c b/main/channel.c
index 3adcf220b..710d1066e 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -1788,7 +1788,7 @@ int __ast_answer(struct ast_channel *chan, unsigned int delay, int cdr_answer)
ast_frfree(cur);
}
- AST_LIST_INSERT_TAIL(&frames, new, frame_list);
+ AST_LIST_INSERT_HEAD(&frames, new, frame_list);
/* if a specific delay period was requested, continue
* until that delay has passed. don't stop just because
@@ -1824,8 +1824,7 @@ int __ast_answer(struct ast_channel *chan, unsigned int delay, int cdr_answer)
if (res == 0) {
ast_channel_lock(chan);
- while ((cur = AST_LIST_LAST(&frames))) {
- AST_LIST_REMOVE(&frames, cur, frame_list);
+ while ((cur = AST_LIST_REMOVE_HEAD(&frames, frame_list))) {
ast_queue_frame_head(chan, cur);
ast_frfree(cur);
}