From: Russell Bryant Date: Tue, 15 Jun 2010 22:48:12 +0000 (+0000) Subject: Don't blow up if an ast_channel doesn't get allocated. X-Git-Tag: 11.0.0-beta1~2832 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3194c061a7ce7c3086805ae36f7dabcdcce477ad;p=thirdparty%2Fasterisk.git 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 --- diff --git a/channels/sig_analog.c b/channels/sig_analog.c index 53804a6f40..36c551e43c 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;