return NULL;
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory!\n");
- return NULL;
- }
AST_STANDARD_APP_ARGS(args, parse);
return;
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory!\n");
- return;
- }
AST_STANDARD_APP_ARGS(args, parse);
return ERROR_NOARG;
}
- strings = ast_strdupa((char *)data);
- if (!strings) {
- return ERROR_NOMEM;
- }
+ strings = ast_strdupa(data);
for (ptrkey = strings; *ptrkey; ptrkey++) {
if (*ptrkey == '|') {
memset(buffer, 0, buflen);
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory!\n");
- return ERROR_NOMEM;
- }
AST_STANDARD_APP_ARGS(args, parse);
char *iftrue;
char *iffalse;
- if (!(data = ast_strdupa(data))) {
- ast_log(LOG_WARNING, "Memory Error!\n");
- return NULL;
- }
+ data = ast_strdupa(data);
data = ast_strip_quoted(data, "\"", "\"");
expr = strsep(&data, "?");
char *iftrue;
char *iffalse;
- if (!(data = ast_strdupa(data))) {
- ast_log(LOG_WARNING, "Memory Error!\n");
- return NULL;
- }
+ data = ast_strdupa(data);
data = ast_strip_quoted(data, "\"", "\"");
expr = strsep(&data, "?");
char *varname;
char *val;
- if (!(data = ast_strdupa(data))) {
- ast_log(LOG_WARNING, "Memory Error!\n");
- return NULL;
- }
+ data = ast_strdupa(data);
varname = strsep(&data, "=");
val = data;
}
parse = ast_strdupa(data);
- if(!parse) {
- ast_log(LOG_ERROR, "Out of memory!\n");
- return NULL;
- }
AST_STANDARD_APP_ARGS(args, parse);
}
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory!\n");
- return NULL;
- }
AST_STANDARD_APP_ARGS(args, parse);
t = "";
}
- if (!s || !t) {
- ast_log(LOG_ERROR, "Out of memory\n");
- ast_mutex_unlock(&query_lock);
- return;
- }
-
/* XXX You might be tempted to change this section into using
* pbx_builtin_pushvar_helper(). However, note that if you try
* to set a NULL (like for VALUE), then nothing gets set, and the
/* Parse our arguments */
s = ast_strdupa(data);
- if (!s) {
- ast_log(LOG_ERROR, "Out of memory\n");
- ast_mutex_unlock(&query_lock);
- return "";
- }
while ((arg = strsep(&s, "|"))) {
count++;
LOCAL_USER_ACF_ADD(u);
- if (!(s = ast_strdupa(data))) {
- ast_log(LOG_WARNING, "Out of memory\n");
- *buffer = '\0';
- LOCAL_USER_REMOVE(u);
- return buffer;
- }
+ s = ast_strdupa(data);
ast_app_separate_args(s, '|', args, sizeof(args) / sizeof(args[0]));
);
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory\n");
- ast_copy_string(buf, "0", len);
- return buf;
- }
AST_STANDARD_APP_ARGS(args, parse);
if (args.delim) {
char *outbuf=buf;
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory");
- return "";
- }
AST_STANDARD_APP_ARGS(args, parse);
ast_copy_string(buf, "0", len);
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory in %s(%s)\n", cmd, data);
- return buf;
- }
AST_NONSTANDARD_APP_ARGS(args, parse, '"');
var = ast_strdupa(data);
value2 = ast_strdupa(value);
- if (!var || !value2) {
- ast_log(LOG_ERROR, "Out of memory\n");
- return;
- }
/* The functions this will generally be used with are SORT and ODBC_*, which
* both return comma-delimited lists. However, if somebody uses literal lists,
}
parse = ast_strdupa(data);
- if (!parse) {
- ast_log(LOG_ERROR, "Out of memory\n");
- return buf;
- }
AST_STANDARD_APP_ARGS(args, parse);