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
certified/1.8.6
Russell Bryant 15 years ago
parent de18661bee
commit 3194c061a7

@ -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;

Loading…
Cancel
Save