[asterisk-commits] tilghman: branch 1.6.0 r245730 - in /branches/1.6.0: ./ apps/app_fax.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 9 12:09:23 CST 2010
Author: tilghman
Date: Tue Feb 9 12:09:16 2010
New Revision: 245730
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=245730
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.0/ (props changed)
branches/1.6.0/apps/app_fax.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/apps/app_fax.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/apps/app_fax.c?view=diff&rev=245730&r1=245729&r2=245730
==============================================================================
--- branches/1.6.0/apps/app_fax.c (original)
+++ branches/1.6.0/apps/app_fax.c Tue Feb 9 12:09:16 2010
@@ -516,6 +516,7 @@
}
ast_frfree(inf);
+ inf = NULL;
}
ast_debug(1, "Loop finished, res=%d\n", res);
More information about the asterisk-commits
mailing list