[asterisk-commits] irroot: branch irroot/t38gateway-trunk r319071 - /team/irroot/t38gateway-trun...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon May 16 04:57:07 CDT 2011


Author: irroot
Date: Mon May 16 04:57:04 2011
New Revision: 319071

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=319071
Log:
Fix a locking issue channel may not have been unlocked 


Modified:
    team/irroot/t38gateway-trunk/res/res_fax.c

Modified: team/irroot/t38gateway-trunk/res/res_fax.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/t38gateway-trunk/res/res_fax.c?view=diff&rev=319071&r1=319070&r2=319071
==============================================================================
--- team/irroot/t38gateway-trunk/res/res_fax.c (original)
+++ team/irroot/t38gateway-trunk/res/res_fax.c Mon May 16 04:57:04 2011
@@ -2723,8 +2723,8 @@
 			}
 			ast_framehook_detach(chan, gateway->framehook);
 		}
-		ast_channel_unlock(chan);
-	}
+	}
+	ast_channel_unlock(chan);
 }
 
 /*! \brief Alternate wait app that listens for CNG




More information about the asterisk-commits mailing list