dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 140690 via svnmerge from

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

........
r140690 | murf | 2008-09-02 16:40:13 -0600 (Tue, 02 Sep 2008) | 1 line

After reconsidering, with respect to 13409, ast_cdr_detach should be OK, better in fact, than ast_cdr_free, which generates lots of useless warnings that will undoubtably generate complaints.

Hmmm. It doesn't hush the useless warnings, but it does allow control of posting via the detach and post routines, for those possible situations,
where you'd want to post single-channel cdrs.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@140692 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
murf 2008-09-02 22:55:12 +00:00
parent f3df28216a
commit c8f5e77562
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_free(chan->cdr);
ast_cdr_detach(chan->cdr);
chan->cdr = NULL;
}