aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xapp.c1
-rwxr-xr-xmanager.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/app.c b/app.c
index bb21be9e8..5e5230e96 100755
--- a/app.c
+++ b/app.c
@@ -1059,7 +1059,6 @@ int ast_app_group_match_get_count(char *groupmatch, char *category)
if (test && !regexec(&regexbuf, test, 0, NULL, 0))
count++;
ast_mutex_unlock(&chan->lock);
- chan = ast_channel_walk_locked(chan);
}
regfree(&regexbuf);
diff --git a/manager.c b/manager.c
index c00658695..4f968cd19 100755
--- a/manager.c
+++ b/manager.c
@@ -753,6 +753,7 @@ static int action_status(struct mansession *s, struct message *m)
ast_state2str(c->_state), bridge, c->uniqueid, idText);
}
ast_mutex_unlock(&s->lock);
+ ast_mutex_unlock(&c->lock);
if (!all)
break;
c = ast_channel_walk_locked(c);