summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-08-31 20:39:12 +0000
committerRussell Bryant <russell@russellbryant.com>2006-08-31 20:39:12 +0000
commit0c6932eeb40dbad8a8e82f3bbd3f3021ed7513eb (patch)
treebebc4cc3e4533ce4096d7c920028a0d79471f57c
parentfaf49751226eef37d0e4be1b2659dc7cd79c2524 (diff)
there is no need to use iax_frame_free here, as it will actually just end up
having a bunch of erroneous messages about attempting to double free frames spammed to the console. Problem reported to me by file ... git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41629 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/iax2-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c
index 56c45e242..018619439 100644
--- a/channels/iax2-parser.c
+++ b/channels/iax2-parser.c
@@ -1007,7 +1007,7 @@ static void frame_cache_cleanup(void *data)
struct iax_frame *cur;
while ((cur = AST_LIST_REMOVE_HEAD(frames, list)))
- __iax_frame_free(cur, 0);
+ free(cur);
free(frames);
}