projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
3b3a042
)
Hold private lock while handling digits
author
Mark Spencer
<markster@digium.com>
Sun, 20 Jun 2004 14:07:44 +0000
(14:07 +0000)
committer
Mark Spencer
<markster@digium.com>
Sun, 20 Jun 2004 14:07:44 +0000
(14:07 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3246
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_zap.c
patch
|
blob
|
history
diff --git
a/channels/chan_zap.c
b/channels/chan_zap.c
index
e897606
..
38759c0
100755
(executable)
--- a/
channels/chan_zap.c
+++ b/
channels/chan_zap.c
@@
-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;
}