From 1ffff64e66bebf5210b425daab65ecf8044a5e59 Mon Sep 17 00:00:00 2001 From: Russell Bryant <russell@russellbryant.com> Date: Wed, 30 Aug 2006 17:07:07 +0000 Subject: [PATCH] fix a bug introduced when I merged my frame caching branch. Queue the translated frame to the spies, *not* the original frame. Thanks PCadach! git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41389 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/channel.c b/main/channel.c index 84e54b806b..61df3d2439 100644 --- a/main/channel.c +++ b/main/channel.c @@ -1359,7 +1359,7 @@ static void queue_frame_to_spies(struct ast_channel *chan, struct ast_frame *f, break; } } - AST_LIST_INSERT_TAIL(&queue->list, ast_frdup(f), frame_list); + AST_LIST_INSERT_TAIL(&queue->list, ast_frdup(translated_frame), frame_list); } else { if (f->subclass != queue->format) { ast_log(LOG_WARNING, "Spy '%s' on channel '%s' wants format '%s', but frame is '%s', dropping\n", -- GitLab