From: Russell Bryant Date: Wed, 30 Aug 2006 17:07:07 +0000 (+0000) Subject: fix a bug introduced when I merged my frame caching branch. Queue the X-Git-Tag: 1.4.0-beta1~248 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ffff64e66bebf5210b425daab65ecf8044a5e59;p=thirdparty%2Fasterisk.git 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 --- 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",