summaryrefslogtreecommitdiff
path: root/apps/app_morsecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_morsecode.c')
-rw-r--r--apps/app_morsecode.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/app_morsecode.c b/apps/app_morsecode.c
index 6c88ed32c..455ee04c1 100644
--- a/apps/app_morsecode.c
+++ b/apps/app_morsecode.c
@@ -111,16 +111,20 @@ static int morsecode_exec(struct ast_channel *chan, void *data)
}
/* Use variable MORESEDITLEN, if set (else 80) */
+ ast_channel_lock(chan);
ditlenc = pbx_builtin_getvar_helper(chan, "MORSEDITLEN");
if (ast_strlen_zero(ditlenc) || (sscanf(ditlenc, "%d", &ditlen) != 1)) {
ditlen = 80;
}
+ ast_channel_unlock(chan);
/* Use variable MORSETONE, if set (else 800) */
+ ast_channel_lock(chan);
tonec = pbx_builtin_getvar_helper(chan, "MORSETONE");
if (ast_strlen_zero(tonec) || (sscanf(tonec, "%d", &tone) != 1)) {
tone = 800;
}
+ ast_channel_unlock(chan);
for (digit = data; *digit; digit++) {
int digit2 = *digit;