summaryrefslogtreecommitdiff
path: root/apps/app_chanisavail.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-09-28 19:42:36 +0000
committerRussell Bryant <russell@russellbryant.com>2005-09-28 19:42:36 +0000
commit9f0cf49bca526618ed261bd26f612a6e126cfeae (patch)
tree6bceb014c39051d0f6c34581cb6cadac5474275d /apps/app_chanisavail.c
parent90aec0b0e3002ada8f0448dee04ef319fa6f873d (diff)
make sure to LOCAL_USER_REMOVE in all cases where the application can exit (issue #5307)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6678 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_chanisavail.c')
-rwxr-xr-xapps/app_chanisavail.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/app_chanisavail.c b/apps/app_chanisavail.c
index 791851f08..4e5e52449 100755
--- a/apps/app_chanisavail.c
+++ b/apps/app_chanisavail.c
@@ -101,6 +101,7 @@ static int chanavail_exec(struct ast_channel *chan, void *data)
number = strchr(tech, '/');
if (!number) {
ast_log(LOG_WARNING, "ChanIsAvail argument takes format ([technology]/[device])\n");
+ LOCAL_USER_REMOVE(u);
return -1;
}
*number = '\0';
@@ -135,8 +136,10 @@ static int chanavail_exec(struct ast_channel *chan, void *data)
if (res < 1) {
pbx_builtin_setvar_helper(chan, "AVAILCHAN", "");
pbx_builtin_setvar_helper(chan, "AVAILORIGCHAN", "");
- if (ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101))
+ if (ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101)) {
+ LOCAL_USER_REMOVE(u);
return -1;
+ }
}
LOCAL_USER_REMOVE(u);