[asterisk-commits] mmichelson: branch 1.6.0 r173594 - in /branches/1.6.0: ./ apps/app_mixmonitor.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Feb 5 12:49:22 CST 2009


Author: mmichelson
Date: Thu Feb  5 12:49:22 2009
New Revision: 173594

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=173594
Log:
Merged revisions 173593 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
r173593 | mmichelson | 2009-02-05 12:48:55 -0600 (Thu, 05 Feb 2009) | 11 lines

Merged revisions 173592 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r173592 | mmichelson | 2009-02-05 12:47:24 -0600 (Thu, 05 Feb 2009) | 3 lines

Add some missing cleanup to app_mixmonitor


........

................

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/apps/app_mixmonitor.c

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

Modified: branches/1.6.0/apps/app_mixmonitor.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/apps/app_mixmonitor.c?view=diff&rev=173594&r1=173593&r2=173594
==============================================================================
--- branches/1.6.0/apps/app_mixmonitor.c (original)
+++ branches/1.6.0/apps/app_mixmonitor.c Thu Feb  5 12:49:22 2009
@@ -250,6 +250,8 @@
 		ast_cond_wait(&mixmonitor->mixmonitor_ds->destruction_condition, &mixmonitor->mixmonitor_ds->lock);
 	}
 	ast_mutex_unlock(&mixmonitor->mixmonitor_ds->lock);
+	ast_mutex_destroy(&mixmonitor->mixmonitor_ds->lock);
+	ast_cond_destroy(&mixmonitor->mixmonitor_ds->destruction_condition);
 	ast_free(mixmonitor->mixmonitor_ds);
 	ast_free(mixmonitor);
 




More information about the asterisk-commits mailing list