summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2006-06-09 19:05:30 +0000
committerJoshua Colp <jcolp@digium.com>2006-06-09 19:05:30 +0000
commitdcab298cfcd2e7a31767b100827161f139b0310f (patch)
treecc8bd6f8e95fde420ab743bbe8998699b7e0bb97 /apps
parentb42ad64f4dfc82cfa773d72b619f68832de1ffda (diff)
Don't double check existence of a variable (issue #7300 reported by foamdino)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33328 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index c6588f645..d06d2cd7f 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -2384,12 +2384,12 @@ static int meetmemute(struct mansession *s, struct message *m, int mute)
char *userid = astman_get_header(m, "Usernum");
int userno;
- if (!confid || ast_strlen_zero(confid)) {
+ if (ast_strlen_zero(confid)) {
astman_send_error(s, m, "Meetme conference not specified");
return 0;
}
- if (!userid || ast_strlen_zero(userid)) {
+ if (ast_strlen_zero(userid)) {
astman_send_error(s, m, "Meetme user number not specified");
return 0;
}