confbridge: Handle user hangup during name recording

This prevents orphaned CBAnn channels from getting stuck in the bridge.

ASTERISK-26994 #close
Reported by: James Terhune

Change-Id: I5e43e832a9507ec3f2c59752cd900b41dab80457
This commit is contained in:
Sean Bright
2017-08-29 10:26:17 -04:00
parent 2d69137bf4
commit d2ace23248

View File

@@ -2317,7 +2317,11 @@ static int confbridge_exec(struct ast_channel *chan, const char *data)
if (!quiet && if (!quiet &&
(ast_test_flag(&user.u_profile, USER_OPT_ANNOUNCE_JOIN_LEAVE) || (ast_test_flag(&user.u_profile, USER_OPT_ANNOUNCE_JOIN_LEAVE) ||
(ast_test_flag(&user.u_profile, USER_OPT_ANNOUNCE_JOIN_LEAVE_REVIEW)))) { (ast_test_flag(&user.u_profile, USER_OPT_ANNOUNCE_JOIN_LEAVE_REVIEW)))) {
conf_rec_name(&user, args.conf_name); if (conf_rec_name(&user, args.conf_name)) {
pbx_builtin_setvar_helper(chan, "CONFBRIDGE_RESULT", "FAILED");
res = -1; /* Hangup during name recording */
goto confbridge_cleanup;
}
} }
/* menu name */ /* menu name */