From: Mark Spencer Date: Wed, 20 Oct 2004 04:27:31 +0000 (+0000) Subject: Fix potential segfault. X-Git-Tag: 1.2.0-beta1~1991 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91cdb43004bd1f86c99a66ac7a2b5a259ecf8930;p=thirdparty%2Fasterisk.git Fix potential segfault. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4037 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 203678df90..e853dc87ee 100755 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1464,14 +1464,17 @@ static int admin_exec(struct ast_channel *chan, void *data) { command = strsep(¶ms, "|"); caller = strsep(¶ms, "|"); - ast_mutex_lock(&conflock); + if (!command) { + ast_log(LOG_WARNING, "MeetmeAdmin requires a command!\n"); + ast_mutex_unlock(&conflock); + return -1; + } cnf = confs; while (cnf) { if (strcmp(cnf->confno, conf) == 0) break; cnf = cnf->next; } - ast_mutex_unlock(&conflock); if (caller) user = find_user(cnf, caller);