[svn-commits] mmichelson: trunk r145553 - /trunk/main/features.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Oct 1 16:06:26 CDT 2008


Author: mmichelson
Date: Wed Oct  1 16:06:26 2008
New Revision: 145553

URL: http://svn.digium.com/view/asterisk?view=rev&rev=145553
Log:
The logic surrounding the return value of ast_spawn_extension
within ast_bridge_call was reversed.

This problem was observed when a blind transfer placed from
the callee channel of a test call failed.

While the problem I am solving here is exactly the same
as what was reported in issue #13584, the difference is
that this fix I am applying is trunk-only. Issue #13584
was reported against the 1.4 branch, and my tests
of 1.4's blind transfers appear to work fine.


Modified:
    trunk/main/features.c

Modified: trunk/main/features.c
URL: http://svn.digium.com/view/asterisk/trunk/main/features.c?view=diff&rev=145553&r1=145552&r2=145553
==============================================================================
--- trunk/main/features.c (original)
+++ trunk/main/features.c Wed Oct  1 16:06:26 2008
@@ -2379,7 +2379,7 @@
 		ast_copy_string(chan->exten, "h", sizeof(chan->exten));
 		chan->priority = 1;
 		ast_channel_unlock(chan);
-		while ((res = ast_spawn_extension(chan, chan->context, chan->exten, chan->priority, chan->cid.cid_num, &found, 1)) == 0) {
+		while (!(res = ast_spawn_extension(chan, chan->context, chan->exten, chan->priority, chan->cid.cid_num, &found, 1)) == 0) {
 			chan->priority++;
 		}
 		if (found && res) 




More information about the svn-commits mailing list