mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-14 00:24:05 +00:00
fix list initialization
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3192 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -124,17 +124,17 @@ struct oh323_pvt {
|
|||||||
static struct ast_user_list {
|
static struct ast_user_list {
|
||||||
struct oh323_user *users;
|
struct oh323_user *users;
|
||||||
ast_mutex_t lock;
|
ast_mutex_t lock;
|
||||||
} userl = { NULL, AST_MUTEX_INITIALIZER };
|
} userl;
|
||||||
|
|
||||||
static struct ast_peer_list {
|
static struct ast_peer_list {
|
||||||
struct oh323_peer *peers;
|
struct oh323_peer *peers;
|
||||||
ast_mutex_t lock;
|
ast_mutex_t lock;
|
||||||
} peerl = { NULL, AST_MUTEX_INITIALIZER };
|
} peerl;
|
||||||
|
|
||||||
static struct ast_alias_list {
|
static struct ast_alias_list {
|
||||||
struct oh323_alias *aliases;
|
struct oh323_alias *aliases;
|
||||||
ast_mutex_t lock;
|
ast_mutex_t lock;
|
||||||
} aliasl = { NULL, AST_MUTEX_INITIALIZER };
|
} aliasl;
|
||||||
|
|
||||||
/** Asterisk RTP stuff*/
|
/** Asterisk RTP stuff*/
|
||||||
static struct sched_context *sched;
|
static struct sched_context *sched;
|
||||||
|
Reference in New Issue
Block a user