Merged revisions 141156 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r141156 | murf | 2008-09-05 08:15:43 -0600 (Fri, 05 Sep 2008) | 1 line

A small change to prevent double-posting of CDR's; thanks to Daniel Ferrer for bringing it to our attention
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@141157 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Steve Murphy 2008-09-05 14:18:43 +00:00
parent ec25f4be4d
commit 0f0c10993c
1 changed files with 1 additions and 1 deletions

View File

@ -1362,7 +1362,7 @@ void ast_channel_free(struct ast_channel *chan)
ast_jb_destroy(chan);
if (chan->cdr) {
ast_cdr_detach(chan->cdr);
ast_cdr_discard(chan->cdr);
chan->cdr = NULL;
}