From: Russell Bryant Date: Wed, 19 Aug 2009 15:32:18 +0000 (+0000) Subject: Don't blow up on a NULL cdr. X-Git-Tag: 11.0.0-beta1~4332 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8fa685ece2b6821e08a56a4bb02ce686722a3fb9;p=thirdparty%2Fasterisk.git Don't blow up on a NULL cdr. Reported in #asterisk-dev. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@213046 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/features.c b/main/features.c index becb6eae73..9f1455185a 100644 --- a/main/features.c +++ b/main/features.c @@ -3120,7 +3120,9 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast chan_ptr = ast_channel_unref(chan_ptr); } /* new channel */ - ast_cdr_specialized_reset(new_peer_cdr, 0); + if (new_peer_cdr) { + ast_cdr_specialized_reset(new_peer_cdr, 0); + } } else { ast_cdr_specialized_reset(peer_cdr, 0); /* nothing changed, reset the peer_cdr */ }