[asterisk-commits] jeang: branch 1.4 r280341 - /branches/1.4/apps/app_meetme.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jul 29 10:52:34 CDT 2010


Author: jeang
Date: Thu Jul 29 10:52:31 2010
New Revision: 280341

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=280341
Log:
Fix a dsp structure leak occuring when a local channel is put into a meetme
conference, then masquaraded away.

Modified:
    branches/1.4/apps/app_meetme.c

Modified: branches/1.4/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=280341&r1=280340&r2=280341
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Thu Jul 29 10:52:31 2010
@@ -1913,6 +1913,9 @@
 	}
 
 	conf_flush(fd, chan);
+
+	if (dsp)
+		ast_dsp_free(dsp);
 
 	if (!(dsp = ast_dsp_new())) {
 		ast_log(LOG_WARNING, "Unable to allocate DSP!\n");




More information about the asterisk-commits mailing list