[zaptel-commits] jsloan: branch group/transcoder-rework r2299 -
/team/group/transcoder-rework/
zaptel-commits at lists.digium.com
zaptel-commits at lists.digium.com
Thu Mar 8 09:06:11 MST 2007
Author: jsloan
Date: Thu Mar 8 10:06:11 2007
New Revision: 2299
URL: http://svn.digium.com/view/zaptel?view=rev&rev=2299
Log:
This fixes the channel building flaw (this looked like a compiler issue, but wasn't). The copy of the flags structure was over writing the chan_built flag. There is still an open issue with the cmdq list.
Modified:
team/group/transcoder-rework/zttranscode.c
Modified: team/group/transcoder-rework/zttranscode.c
URL: http://svn.digium.com/view/zaptel/team/group/transcoder-rework/zttranscode.c?view=diff&rev=2299&r1=2298&r2=2299
==============================================================================
--- team/group/transcoder-rework/zttranscode.c (original)
+++ team/group/transcoder-rework/zttranscode.c Thu Mar 8 10:06:11 2007
@@ -290,7 +290,7 @@
grab this channel
*/
origztc->flags.busy = 1;
- (*ztc)->flags = origztc->flags;
+ (*ztc)->flags.busy = origztc->flags.busy;
(*ztc)->flags.transient = 0;
(*ztc)->flags.have_reference = 1;
ztc_release(origztc);
More information about the zaptel-commits
mailing list