aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-01-18 22:00:37 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-01-18 22:00:37 +0000
commitfb1b02b49da9dd42f2e76477a201940f34ba64f9 (patch)
tree6fdbeedca0dbc9f55ca9fe23646cb7abeef6d771 /apps
parentd6fbc0b6b8c50138a8dde45a728d009aa7fc3724 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@8202 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 40cfb616e..45a738fa2 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -1630,7 +1630,8 @@ static struct ast_conference *find_conf(struct ast_channel *chan, char *confno,
if (dynamic_pin) {
if (dynamic_pin[0] == 'q') {
/* Query the user to enter a PIN */
- ast_app_getdata(chan, "conf-getpin", dynamic_pin, AST_MAX_EXTENSION - 1, 0);
+ if (ast_app_getdata(chan, "conf-getpin", dynamic_pin, AST_MAX_EXTENSION - 1, 0) < 0)
+ return NULL;
}
cnf = build_conf(confno, dynamic_pin, "", make, dynamic);
} else {