From 241970018f0e904a837ed97893ff72a8f64fb081 Mon Sep 17 00:00:00 2001 From: tilghman Date: Tue, 9 Feb 2010 18:09:16 +0000 Subject: 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 ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@245730 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_fax.c | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/app_fax.c b/apps/app_fax.c index f1a8bb6d8..89b4577f7 100644 --- a/apps/app_fax.c +++ b/apps/app_fax.c @@ -516,6 +516,7 @@ static int transmit_audio(fax_session *s) } ast_frfree(inf); + inf = NULL; } ast_debug(1, "Loop finished, res=%d\n", res); -- cgit v1.2.3