aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_curl.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_curl.c')
-rw-r--r--apps/app_curl.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/app_curl.c b/apps/app_curl.c
index 93d77d571..c1736969b 100644
--- a/apps/app_curl.c
+++ b/apps/app_curl.c
@@ -128,9 +128,7 @@ static char *acf_curl_exec(struct ast_channel *chan, char *cmd, char *data, char
LOCAL_USER_ACF_ADD(u);
- info = ast_strdupa(data);
- if (!info) {
- ast_log(LOG_ERROR, "Out of memory\n");
+ if (!(info = ast_strdupa(data))) {
LOCAL_USER_REMOVE(u);
return buf;
}