summaryrefslogtreecommitdiff
path: root/apps/app_record.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-10-19 18:19:02 +0000
committerRussell Bryant <russell@russellbryant.com>2005-10-19 18:19:02 +0000
commit4aa7912057e83f052e94637f0b1a10026fe14558 (patch)
tree5fee3540f8d72d45cd1b2e5bf15e5860581dd4f8 /apps/app_record.c
parente5afdbbe160b3267df769c9f04c04c6f152b1c94 (diff)
Massive cleanups to applications for LOCAL_USER handling and some other things.
In general, LOCAL_USER_ADD/REMOVE should be the first/last thing called in an application. An exception is if there is some *fast* setup code that might halt the execution of the application, such as checking to see if an argument exists. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6832 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_record.c')
-rwxr-xr-xapps/app_record.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/apps/app_record.c b/apps/app_record.c
index 7b8e14512..4186e729a 100755
--- a/apps/app_record.c
+++ b/apps/app_record.c
@@ -99,18 +99,23 @@ static int record_exec(struct ast_channel *chan, void *data)
int rfmt = 0;
int flags;
-
-
-
/* The next few lines of code parse out the filename and header from the input string */
if (!data || ast_strlen_zero(data)) { /* no data implies no filename or anything is present */
ast_log(LOG_WARNING, "Record requires an argument (filename)\n");
return -1;
}
+
+ LOCAL_USER_ADD(u);
+
/* Yay for strsep being easy */
vdata = ast_strdupa(data);
+ if (!vdata) {
+ ast_log(LOG_ERROR, "Out of memory\n");
+ LOCAL_USER_REMOVE(u);
+ return -1;
+ }
+
p = vdata;
-
filename = strsep(&p, "|");
silstr = strsep(&p, "|");
maxstr = strsep(&p, "|");
@@ -129,6 +134,7 @@ static int record_exec(struct ast_channel *chan, void *data)
}
if (!ext) {
ast_log(LOG_WARNING, "No extension specified to filename!\n");
+ LOCAL_USER_REMOVE(u);
return -1;
}
if (silstr) {
@@ -180,7 +186,7 @@ static int record_exec(struct ast_channel *chan, void *data)
strncpy(tmp, filename, sizeof(tmp)-1);
/* end of routine mentioned */
- LOCAL_USER_ADD(u);
+
if (chan->_state != AST_STATE_UP) {
if (option_skip) {
@@ -213,11 +219,13 @@ static int record_exec(struct ast_channel *chan, void *data)
res = ast_set_read_format(chan, AST_FORMAT_SLINEAR);
if (res < 0) {
ast_log(LOG_WARNING, "Unable to set to linear mode, giving up\n");
+ LOCAL_USER_REMOVE(u);
return -1;
}
sildet = ast_dsp_new();
if (!sildet) {
ast_log(LOG_WARNING, "Unable to create silence detector :(\n");
+ LOCAL_USER_REMOVE(u);
return -1;
}
ast_dsp_set_threshold(sildet, 256);
@@ -308,7 +316,6 @@ static int record_exec(struct ast_channel *chan, void *data)
} else
ast_log(LOG_WARNING, "Could not answer channel '%s'\n", chan->name);
- LOCAL_USER_REMOVE(u);
if ((silence > 0) && rfmt) {
res = ast_set_read_format(chan, rfmt);
if (res)
@@ -316,6 +323,9 @@ static int record_exec(struct ast_channel *chan, void *data)
if (sildet)
ast_dsp_free(sildet);
}
+
+ LOCAL_USER_REMOVE(u);
+
return res;
}