]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
closes issue #11845; that's the one where there's a 1004 byte cdr leak with every...
authorSteve Murphy <murf@digium.com>
Thu, 31 Jan 2008 19:30:37 +0000 (19:30 +0000)
committerSteve Murphy <murf@digium.com>
Thu, 31 Jan 2008 19:30:37 +0000 (19:30 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@101480 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/pbx.c

index a6ef3ded012e73209736cb20a94430180e0f02a0..e1a2d2e878eb71ea328f29e9c35ff2b2ab06ce91 100644 (file)
@@ -4604,7 +4604,8 @@ int ast_async_goto(struct ast_channel *chan, const char *context, const char *ex
                   at the new location */
                struct ast_channel *tmpchan = ast_channel_alloc(0, chan->_state, 0, 0, chan->accountcode, chan->exten, chan->context, chan->amaflags, "AsyncGoto/%s", chan->name);
                if (chan->cdr) {
-                       tmpchan->cdr = ast_cdr_dup(chan->cdr);
+                       ast_cdr_discard(tmpchan->cdr);
+                       tmpchan->cdr = ast_cdr_dup(chan->cdr);  /* share the love */
                }
                if (!tmpchan)
                        res = -1;