[asterisk-commits] kpfleming: branch 1.6.1 r182533 - in /branches/1.6.1: ./ main/channel.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Mar 17 10:00:49 CDT 2009
Author: kpfleming
Date: Tue Mar 17 10:00:45 2009
New Revision: 182533
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=182533
Log:
Merged revisions 182530 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r182530 | kpfleming | 2009-03-17 09:59:33 -0500 (Tue, 17 Mar 2009) | 2 lines
correct logic flaw in ast_answer() changes in r182525
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/main/channel.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/main/channel.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/main/channel.c?view=diff&rev=182533&r1=182532&r2=182533
==============================================================================
--- branches/1.6.1/main/channel.c (original)
+++ branches/1.6.1/main/channel.c Tue Mar 17 10:00:45 2009
@@ -1812,7 +1812,8 @@
if (res == 0) {
ast_channel_lock(chan);
- while ((cur = AST_LIST_REMOVE(&frames, AST_LIST_LAST(&frames), frame_list))) {
+ while ((cur = AST_LIST_LAST(&frames))) {
+ AST_LIST_REMOVE(&frames, cur, frame_list);
ast_queue_frame_head(chan, cur);
ast_frfree(cur);
}
More information about the asterisk-commits
mailing list