Hold private lock while handling digits

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3246 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-06-20 14:07:44 +00:00
parent 3b3a042cef
commit 347f32ab97

View File

@@ -842,6 +842,7 @@ static int zt_digit(struct ast_channel *ast, char digit)
int res = 0;
int index;
p = ast->pvt->pvt;
ast_mutex_lock(&p->lock);
index = zt_get_index(ast, p, 0);
if (index == SUB_REAL) {
#ifdef ZAPATA_PRI
@@ -872,7 +873,7 @@ static int zt_digit(struct ast_channel *ast, char digit)
p->dialing = 1;
}
}
ast_mutex_unlock(&p->lock);
return res;
}