[Asterisk-cvs] asterisk/channels chan_h323.c,1.56,1.57

jeremy at lists.digium.com jeremy at lists.digium.com
Fri Jun 11 22:40:59 CDT 2004


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv7795

Modified Files:
	chan_h323.c 
Log Message:
fix list initialization

Index: chan_h323.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_h323.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- chan_h323.c	9 Jun 2004 01:45:07 -0000	1.56
+++ chan_h323.c	12 Jun 2004 03:44:51 -0000	1.57
@@ -124,17 +124,17 @@
 static struct ast_user_list {
 	struct oh323_user *users;
 	ast_mutex_t lock;
-} userl = { NULL, AST_MUTEX_INITIALIZER };
+} userl;
 
 static struct ast_peer_list {
 	struct oh323_peer *peers;
 	ast_mutex_t lock;
-} peerl = { NULL, AST_MUTEX_INITIALIZER };
+} peerl;
 
 static struct ast_alias_list {
 	struct oh323_alias *aliases;
 	ast_mutex_t lock;
-} aliasl = { NULL, AST_MUTEX_INITIALIZER };
+} aliasl;
 
 /** Asterisk RTP stuff*/
 static struct sched_context *sched;




More information about the svn-commits mailing list