]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix memory leak
authorMark Spencer <markster@digium.com>
Wed, 3 Aug 2005 20:22:27 +0000 (20:22 +0000)
committerMark Spencer <markster@digium.com>
Wed, 3 Aug 2005 20:22:27 +0000 (20:22 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@6276 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_dial.c

index 0d16d0483d4996fff4e695457fac07d6aa7c4045..c5d9c92b42710c31d3e905e1b83ee1d9d6be5d2a 100755 (executable)
@@ -414,8 +414,8 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
                        if (single && ((f->frametype == AST_FRAME_VOICE) || (f->frametype == AST_FRAME_DTMF)))  {
                                if (ast_write(outgoing->chan, f))
                                        ast_log(LOG_WARNING, "Unable to forward voice\n");
-                               ast_frfree(f);
                        }
+                       ast_frfree(f);
                }
                if (!*to && (option_verbose > 2))
                        ast_verbose( VERBOSE_PREFIX_3 "Nobody picked up in %d ms\n", orig);