mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 03:04:19 +00:00
Merged revisions 131299 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r131299 | mmichelson | 2008-07-16 13:57:34 -0500 (Wed, 16 Jul 2008) | 13 lines Make absolutely certain that the transfer datastore is removed from the calling channel once the caller is finished in the queue. This could have weird con- sequences when dialing local queue members when multiple transfers occur on a single call. Also fixed a memory leak that would occur when an attended transfer occurred from a queue member. (closes issue #13047) Reported by: festr ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@131300 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3090,7 +3090,7 @@ static void queue_transfer_fixup(void *data, struct ast_channel *old_chan, struc
|
|||||||
struct member *member = qtds->member;
|
struct member *member = qtds->member;
|
||||||
int callstart = qtds->starttime;
|
int callstart = qtds->starttime;
|
||||||
struct ast_datastore *datastore;
|
struct ast_datastore *datastore;
|
||||||
|
|
||||||
ast_queue_log(qe->parent->name, qe->chan->uniqueid, member->membername, "TRANSFER", "%s|%s|%ld|%ld|%d",
|
ast_queue_log(qe->parent->name, qe->chan->uniqueid, member->membername, "TRANSFER", "%s|%s|%ld|%ld|%d",
|
||||||
new_chan->exten, new_chan->context, (long) (callstart - qe->start),
|
new_chan->exten, new_chan->context, (long) (callstart - qe->start),
|
||||||
(long) (time(NULL) - callstart), qe->opos);
|
(long) (time(NULL) - callstart), qe->opos);
|
||||||
@@ -3101,6 +3101,7 @@ static void queue_transfer_fixup(void *data, struct ast_channel *old_chan, struc
|
|||||||
}
|
}
|
||||||
|
|
||||||
ast_channel_datastore_remove(new_chan, datastore);
|
ast_channel_datastore_remove(new_chan, datastore);
|
||||||
|
ast_channel_datastore_free(datastore);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*! \brief mechanism to tell if a queue caller was atxferred by a queue member.
|
/*! \brief mechanism to tell if a queue caller was atxferred by a queue member.
|
||||||
@@ -3797,6 +3798,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
|
|||||||
* when the masquerade occurred. These other "ending" queue_log messages are unnecessary
|
* when the masquerade occurred. These other "ending" queue_log messages are unnecessary
|
||||||
*/
|
*/
|
||||||
if (!attended_transfer_occurred(qe->chan)) {
|
if (!attended_transfer_occurred(qe->chan)) {
|
||||||
|
struct ast_datastore *transfer_ds = ast_channel_datastore_find(qe->chan, &queue_transfer_info, NULL);
|
||||||
if (strcasecmp(oldcontext, qe->chan->context) || strcasecmp(oldexten, qe->chan->exten)) {
|
if (strcasecmp(oldcontext, qe->chan->context) || strcasecmp(oldexten, qe->chan->exten)) {
|
||||||
ast_queue_log(queuename, qe->chan->uniqueid, member->membername, "TRANSFER", "%s|%s|%ld|%ld|%d",
|
ast_queue_log(queuename, qe->chan->uniqueid, member->membername, "TRANSFER", "%s|%s|%ld|%ld|%d",
|
||||||
qe->chan->exten, qe->chan->context, (long) (callstart - qe->start),
|
qe->chan->exten, qe->chan->context, (long) (callstart - qe->start),
|
||||||
@@ -3811,6 +3813,12 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
|
|||||||
(long) (callstart - qe->start), (long) (time(NULL) - callstart), qe->opos);
|
(long) (callstart - qe->start), (long) (time(NULL) - callstart), qe->opos);
|
||||||
send_agent_complete(qe, queuename, peer, member, callstart, vars, sizeof(vars), AGENT);
|
send_agent_complete(qe, queuename, peer, member, callstart, vars, sizeof(vars), AGENT);
|
||||||
}
|
}
|
||||||
|
if (transfer_ds) {
|
||||||
|
ast_channel_lock(qe->chan);
|
||||||
|
ast_channel_datastore_remove(qe->chan, transfer_ds);
|
||||||
|
ast_channel_datastore_free(transfer_ds);
|
||||||
|
ast_channel_unlock(qe->chan);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bridge != AST_PBX_NO_HANGUP_PEER)
|
if (bridge != AST_PBX_NO_HANGUP_PEER)
|
||||||
|
|||||||
Reference in New Issue
Block a user