[svn-commits] branch 1.2 r27468 - /branches/1.2/channel.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue May 16 13:05:18 MST 2006


Author: kpfleming
Date: Tue May 16 15:05:17 2006
New Revision: 27468

URL: http://svn.digium.com/view/asterisk?rev=27468&view=rev
Log:
don't leak frames when deferring DTMF or dropping duplicate ANSWER frames (issue #7041, slightly different fix, reported/patched by clausf)

Modified:
    branches/1.2/channel.c

Modified: branches/1.2/channel.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/channel.c?rev=27468&r1=27467&r2=27468&view=diff
==============================================================================
--- branches/1.2/channel.c (original)
+++ branches/1.2/channel.c Tue May 16 15:05:17 2006
@@ -1950,10 +1950,12 @@
 			chan->dtmfq[strlen(chan->dtmfq)] = f->subclass;
 		else
 			ast_log(LOG_WARNING, "Dropping deferred DTMF digits on %s\n", chan->name);
+		ast_frfree(f);
 		f = &null_frame;
 	} else if ((f->frametype == AST_FRAME_CONTROL) && (f->subclass == AST_CONTROL_ANSWER)) {
 		if (prestate == AST_STATE_UP) {
 			ast_log(LOG_DEBUG, "Dropping duplicate answer!\n");
+			ast_frfree(f);
 			f = &null_frame;
 		}
 		/* Answer the CDR */



More information about the svn-commits mailing list