diff --git a/apps/app_queue.c b/apps/app_queue.c index 23a47b6be55c2fa7a36b05c04a4ba329cae68694..683b5faa58da4519fe0820aab2df11b8a701ecfa 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -5156,8 +5156,11 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce if ((tds = ast_channel_datastore_find(qe->chan, &queue_transfer_info, NULL))) { ast_channel_datastore_remove(qe->chan, tds); } + ast_channel_unlock(qe->chan); update_queue(qe->parent, member, callcompletedinsl, (time(NULL) - callstart)); } else { + ast_channel_unlock(qe->chan); + /* We already logged the TRANSFER on the queue_log, but we still need to send the AgentComplete event */ send_agent_complete(qe, queuename, peer, member, callstart, vars, sizeof(vars), TRANSFER); } @@ -5165,7 +5168,6 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce if (transfer_ds) { ast_datastore_free(transfer_ds); } - ast_channel_unlock(qe->chan); ast_hangup(peer); res = bridge ? bridge : 1; ao2_ref(member, -1);