dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 71522 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r71522 | file | 2007-06-25 09:03:03 -0400 (Mon, 25 Jun 2007) | 2 lines

Minor tweak for queueing up the unhold frame... this will teach me to do bugs while half asleep. (issue #10046 reported by dimas)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@71525 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-06-25 13:04:36 +00:00
parent 3fed670793
commit 0d58f906de
1 changed files with 2 additions and 1 deletions

View File

@ -959,7 +959,8 @@ static struct ast_channel *agent_new(struct agent_pvt *p, int state)
ast_mutex_unlock(&p->lock); /* For other thread to read the condition. */
return NULL;
}
} else if (p->chan)
}
if (p->chan)
ast_indicate(p->chan, AST_CONTROL_UNHOLD);
p->owning_app = pthread_self();
/* After the above step, there should not be any blockers. */