[asterisk-commits] irroot: branch irroot/distrotech-customers-10 r336159 - /team/irroot/distrote...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Sep 15 14:30:17 CDT 2011


Author: irroot
Date: Thu Sep 15 14:30:16 2011
New Revision: 336159

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=336159
Log:
Changes to WaitFax free frames when queueing them preventing a leak

Modified:
    team/irroot/distrotech-customers-10/res/res_fax.c

Modified: team/irroot/distrotech-customers-10/res/res_fax.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/distrotech-customers-10/res/res_fax.c?view=diff&rev=336159&r1=336158&r2=336159
==============================================================================
--- team/irroot/distrotech-customers-10/res/res_fax.c (original)
+++ team/irroot/distrotech-customers-10/res/res_fax.c Thu Sep 15 14:30:16 2011
@@ -3170,7 +3170,7 @@
 	ast_channel_lock(chan);
 	while ((f = AST_LIST_REMOVE_HEAD(&deferred_frames, frame_list))) {
 		dup_f = ast_frisolate(f);
-		ast_queue_frame_head(chan, dup_f;
+		ast_queue_frame_head(chan, dup_f);
 		if (dup_f != f) {
 			ast_frfree(f);
 		}




More information about the asterisk-commits mailing list