mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 04:43:50 +00:00
remove a check of the result from ast_mutex_lock
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25446 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -410,13 +410,9 @@ static int stop_mixmonitor_exec(struct ast_channel *chan, void *data)
|
||||
|
||||
LOCAL_USER_ADD(u);
|
||||
|
||||
if (!ast_mutex_lock(&chan->lock)) {
|
||||
ast_channel_spy_stop_by_type(chan, mixmonitor_spy_type);
|
||||
ast_mutex_unlock(&chan->lock);
|
||||
} else {
|
||||
ast_log(LOG_WARNING, "Could not lock %s to stop MixMonitor on it\n",
|
||||
chan->name);
|
||||
}
|
||||
ast_mutex_lock(&chan->lock);
|
||||
ast_channel_spy_stop_by_type(chan, mixmonitor_spy_type);
|
||||
ast_mutex_unlock(&chan->lock);
|
||||
|
||||
LOCAL_USER_REMOVE(u);
|
||||
|
||||
|
Reference in New Issue
Block a user