[svn-commits] tilghman: branch 1.6.1 r245731 - in /branches/1.6.1: ./ apps/app_fax.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Feb 9 12:09:31 CST 2010


Author: tilghman
Date: Tue Feb  9 12:09:25 2010
New Revision: 245731

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=245731
Log:
Merged revisions 245729 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r245729 | tilghman | 2010-02-09 12:06:30 -0600 (Tue, 09 Feb 2010) | 8 lines
  
  Ensure frames are only freed once.
  
  (closes issue #16361)
   Reported by: vlad
   Patches: 
         20100208__issue16361.diff.txt uploaded by tilghman (license 14)
   Tested by: kenny, bloodoff, misaksen
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/apps/app_fax.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/apps/app_fax.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/apps/app_fax.c?view=diff&rev=245731&r1=245730&r2=245731
==============================================================================
--- branches/1.6.1/apps/app_fax.c (original)
+++ branches/1.6.1/apps/app_fax.c Tue Feb  9 12:09:25 2010
@@ -516,6 +516,7 @@
 		}
 
 		ast_frfree(inf);
+		inf = NULL;
 	}
 
 	ast_debug(1, "Loop finished, res=%d\n", res);




More information about the svn-commits mailing list