[Asterisk-cvs] asterisk/channels chan_vpb.c,1.29,1.30

bkramer at lists.digium.com bkramer at lists.digium.com
Wed Jul 14 18:08:58 CDT 2004


Update of /usr/cvsroot/asterisk/channels
In directory localhost.localdomain:/tmp/cvs-serv910

Modified Files:
	chan_vpb.c 
Log Message:
/ remove extrenous NULL at end of function


Index: chan_vpb.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_vpb.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- chan_vpb.c	24 Jun 2004 13:27:44 -0000	1.29
+++ chan_vpb.c	14 Jul 2004 21:55:01 -0000	1.30
@@ -2104,7 +2104,7 @@
 	ast_mutex_destroy(&bridge_lock);
 	for(int i = 0; i < max_bridges; i++ ) {
 		ast_mutex_destroy(&bridges[i].lock);
-		pthread_cond_destroy(&bridges[i].cond, NULL);
+		pthread_cond_destroy(&bridges[i].cond);
 	}
 	free(bridges);
 




More information about the svn-commits mailing list