From: Richard Mudgett Date: Fri, 20 May 2011 20:49:03 +0000 (+0000) Subject: Merged revisions 320236 via svnmerge from X-Git-Tag: 1.8.5-rc1~11^2~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf153ba6a4fb0fac5a9afa5e11d7604d7a02e10b;p=thirdparty%2Fasterisk.git Merged revisions 320236 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ................ r320236 | rmudgett | 2011-05-20 15:44:54 -0500 (Fri, 20 May 2011) | 20 lines Merged revisions 320235 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r320235 | rmudgett | 2011-05-20 15:38:22 -0500 (Fri, 20 May 2011) | 13 lines The meetme CLI command completion leaves conferences mutex locked. When issuing a meetme kick CLI command and an invalid (non-existent) conference number is specified, pressing Tab leaves the conferences mutex locked and, therefore, all conferences deadlock. Add missing unlock. (closes issue #19336) Reported by: zvision Patches: app_meetme.diff uploaded by zvision (license 798) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@320237 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index b3cc1fa794..703bafe130 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1342,6 +1342,7 @@ static char *complete_meetmecmd(const char *line, const char *word, int pos, int AST_LIST_UNLOCK(&confs); return usr ? ast_strdup(usrno) : NULL; } + AST_LIST_UNLOCK(&confs); } }