Index: funcs/func_curl.c =================================================================== --- funcs/func_curl.c (revision 308989) +++ funcs/func_curl.c (working copy) @@ -409,7 +409,11 @@ AST_LIST_HEAD(global_curl_info, curl_settings) *list = NULL; *buf = '\0'; - + + if (!str) { + return -1; + } + if (ast_strlen_zero(info)) { ast_log(LOG_WARNING, "CURL requires an argument (URL)\n"); ast_free(str); @@ -479,13 +483,12 @@ int rowcount = 0; while (fields && values && (piece = strsep(&remainder, "&"))) { char *name = strsep(&piece, "="); - if (!piece) { - piece = ""; + if (piece) { + ast_uri_decode(piece); } - ast_uri_decode(piece); ast_uri_decode(name); ast_str_append(&fields, 0, "%s%s", rowcount ? "," : "", name); - ast_str_append(&values, 0, "%s%s", rowcount ? "," : "", piece); + ast_str_append(&values, 0, "%s%s", rowcount ? "," : "", S_OR(piece, "")); rowcount++; } pbx_builtin_setvar_helper(chan, "~ODBCFIELDS~", ast_str_buffer(fields));