aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-21 15:55:38 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-21 15:55:38 +0000
commit5f77fae35e6c9faefcd37e52a46241dfbc11acb3 (patch)
tree62575b1ce345f5bd04333ea7b7f11cf1ac1e0af6 /apps
parent152d1eec4d601637ca0a181ce60836eaf816e094 (diff)
Merged revisions 13851 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r13851 | russell | 2006-03-21 10:53:27 -0500 (Tue, 21 Mar 2006) | 2 lines don't add conference participant if the user hangs up while recording their name (issue #6661) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13852 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 30e62dd62..aeb537c4f 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -957,7 +957,9 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
snprintf(user->namerecloc, sizeof(user->namerecloc),
"%s/meetme/meetme-username-%s-%d", ast_config_AST_SPOOL_DIR,
conf->confno, user->user_no);
- ast_record_review(chan, "vm-rec-name", user->namerecloc, 10, "sln", &duration, NULL);
+ res = ast_record_review(chan, "vm-rec-name", user->namerecloc, 10, "sln", &duration, NULL);
+ if (res == -1)
+ goto outrun;
}
if ( !(confflags & (CONFFLAG_QUIET | CONFFLAG_NOONLYPERSON)) ) {