Merged revisions 56847 via svnmerge from

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

........
r56847 | russell | 2007-02-26 14:04:13 -0600 (Mon, 26 Feb 2007) | 2 lines

Fix a crash in my last change to iax2_indicate(). (issue #9150)

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@56849 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2007-02-26 20:04:53 +00:00
parent 750635b501
commit c617945b5c

View File

@@ -3323,14 +3323,14 @@ static int iax2_answer(struct ast_channel *c)
static int iax2_indicate(struct ast_channel *c, int condition, const void *data, size_t datalen)
{
unsigned short callno = PTR_TO_CALLNO(c->tech_pvt);
struct chan_iax2_pvt *pvt = c->tech_pvt;
struct chan_iax2_pvt *pvt;
int res = 0;
if (option_debug && iaxdebug)
ast_log(LOG_DEBUG, "Indicating condition %d\n", condition);
ast_mutex_lock(&iaxsl[callno]);
pvt = iaxs[callno];
if (!strcasecmp(pvt->mohinterpret, "passthrough")) {
res = send_command(pvt, AST_FRAME_CONTROL, condition, 0, data, datalen, -1);
ast_mutex_unlock(&iaxsl[callno]);