aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_cut.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_cut.c')
-rwxr-xr-xapps/app_cut.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_cut.c b/apps/app_cut.c
index 96f0f9c3f..bc270371d 100755
--- a/apps/app_cut.c
+++ b/apps/app_cut.c
@@ -262,7 +262,6 @@ static int sort_exec(struct ast_channel *chan, void *data)
char *varname, *strings, result[512] = "";
static int dep_warning=0;
- LOCAL_USER_ADD(u);
if (!dep_warning) {
ast_log(LOG_WARNING, "The application Sort is deprecated. Please use the SORT() function instead.\n");
dep_warning=1;
@@ -270,10 +269,11 @@ static int sort_exec(struct ast_channel *chan, void *data)
if (!data) {
ast_log(LOG_ERROR, "Sort() requires an argument\n");
- LOCAL_USER_REMOVE(u);
return 0;
}
+ LOCAL_USER_ADD(u);
+
strings = ast_strdupa((char *)data);
if (!strings) {
ast_log(LOG_ERROR, "Out of memory\n");