summaryrefslogtreecommitdiff
path: root/apps/app_curl.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_curl.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_curl.c')
-rwxr-xr-xapps/app_curl.c40
1 files changed, 21 insertions, 19 deletions
diff --git a/apps/app_curl.c b/apps/app_curl.c
index e146585bc..c43d1a90e 100755
--- a/apps/app_curl.c
+++ b/apps/app_curl.c
@@ -118,27 +118,28 @@ static int curl_exec(struct ast_channel *chan, void *data)
char *info, *post_data=NULL, *url;
struct MemoryStruct chunk = { NULL, 0 };
static int dep_warning = 0;
-
- if (!data || !strlen((char *)data)) {
- ast_log(LOG_WARNING, "Curl requires an argument (URL)\n");
- return -1;
- }
-
+
if (!dep_warning) {
ast_log(LOG_WARNING, "The application Curl is deprecated. Please use the CURL() function instead.\n");
dep_warning = 1;
}
+ if (!data || ast_strlen_zero(data)) {
+ ast_log(LOG_WARNING, "Curl requires an argument (URL)\n");
+ return -1;
+ }
+
+ LOCAL_USER_ADD(u);
+
if ((info = ast_strdupa((char *)data))) {
url = strsep(&info, "|");
post_data = info;
} else {
ast_log(LOG_ERROR, "Out of memory\n");
+ LOCAL_USER_REMOVE(u);
return -1;
}
- LOCAL_USER_ADD(u);
-
if (! curl_internal(&chunk, url, post_data)) {
if (chunk.memory) {
chunk.memory[chunk.size] = '\0';
@@ -164,23 +165,25 @@ static char *acf_curl_exec(struct ast_channel *chan, char *cmd, char *data, char
char *info, *post_data=NULL, *url;
struct MemoryStruct chunk = { NULL, 0 };
- if (!data || !strlen((char *)data)) {
+ *buf = '\0';
+
+ if (!data || ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "CURL requires an argument (URL)\n");
- *buf = '\0';
return buf;
}
- if ((info = ast_strdupa((char *)data))) {
- url = strsep(&info, "|");
- post_data = info;
- } else {
+ LOCAL_USER_ACF_ADD(u);
+
+ info = ast_strdupa(data);
+ if (!info) {
ast_log(LOG_ERROR, "Out of memory\n");
- *buf = '\0';
+ LOCAL_USER_REMOVE(u);
return buf;
}
-
- LOCAL_USER_ACF_ADD(u);
-
+
+ url = strsep(&info, "|");
+ post_data = info;
+
if (! curl_internal(&chunk, url, post_data)) {
if (chunk.memory) {
chunk.memory[chunk.size] = '\0';
@@ -192,7 +195,6 @@ static char *acf_curl_exec(struct ast_channel *chan, char *cmd, char *data, char
}
} else {
ast_log(LOG_ERROR, "Cannot allocate curl structure\n");
- *buf = '\0';
}
LOCAL_USER_REMOVE(u);