Skip to content
Snippets Groups Projects
Commit fb775744 authored by Russell Bryant's avatar Russell Bryant
Browse files

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
parent 3fbd4609
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment