mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
channels: Return allocated channels locked.
This change makes ast_channel_alloc return allocated channels locked. By doing so no other thread can acquire, lock, and manipulate the channel before it is completely set up. (closes issue AST-1256) Review: https://reviewboard.asterisk.org/r/3067/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@404204 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1017,6 +1017,12 @@ __ast_channel_alloc_ap(int needqueue, int state, const char *cid_num, const char
|
||||
ast_channel_internal_finalize(tmp);
|
||||
|
||||
ast_atomic_fetchadd_int(&chancount, +1);
|
||||
|
||||
/* You might scream "locking inversion" at seeing this but it is actually perfectly fine.
|
||||
* Since the channel was just created nothing can know about it yet or even acquire it.
|
||||
*/
|
||||
ast_channel_lock(tmp);
|
||||
|
||||
ao2_link(channels, tmp);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user