summaryrefslogtreecommitdiff
path: root/channels/sig_analog.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2010-06-15 22:48:12 +0000
committerRussell Bryant <russell@russellbryant.com>2010-06-15 22:48:12 +0000
commit3194c061a7ce7c3086805ae36f7dabcdcce477ad (patch)
tree3fbefa55db7ab347fe6aa0bcce193f78109cfbe3 /channels/sig_analog.c
parentde18661beeda1c0d868a76157e970001b98e1b1a (diff)
Don't blow up if an ast_channel doesn't get allocated.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@270726 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/sig_analog.c')
-rw-r--r--channels/sig_analog.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/channels/sig_analog.c b/channels/sig_analog.c
index 53804a6f4..36c551e43 100644
--- a/channels/sig_analog.c
+++ b/channels/sig_analog.c
@@ -410,7 +410,9 @@ static struct ast_channel * analog_new_ast_channel(struct analog_pvt *p, int sta
}
c = p->calls->new_ast_channel(p->chan_pvt, state, startpbx, sub, requestor);
- ast_string_field_set(c, call_forward, p->call_forward);
+ if (c) {
+ ast_string_field_set(c, call_forward, p->call_forward);
+ }
p->subs[sub].owner = c;
if (!p->owner) {
p->owner = c;