summaryrefslogtreecommitdiff
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-06-22 13:53:45 +0000
committerMark Spencer <markster@digium.com>2004-06-22 13:53:45 +0000
commit8b2b0278c9d0be03b5c25ca3125b620992588091 (patch)
tree50477817ed8b88241b759ad34c3a48f867c81122 /apps/app_dial.c
parente66aef0c0575ea36c026ac6f70bbe76eeae7e75b (diff)
Make sure outgoing is not NULL
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3270 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_dial.c')
-rwxr-xr-xapps/app_dial.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 1abe9e266..67f82fd73 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -817,12 +817,14 @@ static int dial_exec(struct ast_channel *chan, void *data)
} else
to = -1;
- if (outgoing->musiconhold) {
- moh=1;
- ast_moh_start(chan, NULL);
- } else if (outgoing->ringbackonly) {
- ast_indicate(chan, AST_CONTROL_RINGING);
- sentringing++;
+ if (outgoing) {
+ if (outgoing->musiconhold) {
+ moh=1;
+ ast_moh_start(chan, NULL);
+ } else if (outgoing->ringbackonly) {
+ ast_indicate(chan, AST_CONTROL_RINGING);
+ sentringing++;
+ }
}
peer = wait_for_answer(chan, outgoing, &to, &allowredir_in, &allowredir_out, &allowdisconnect, &sentringing);