From 4aa7912057e83f052e94637f0b1a10026fe14558 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 19 Oct 2005 18:19:02 +0000 Subject: 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 --- apps/app_curl.c | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) (limited to 'apps/app_curl.c') 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); -- cgit v1.2.3