aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--funcs/func_odbc.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/funcs/func_odbc.c b/funcs/func_odbc.c
index e0f4eb302..36f530c6a 100644
--- a/funcs/func_odbc.c
+++ b/funcs/func_odbc.c
@@ -963,7 +963,7 @@ static char *cli_odbc_read(struct ast_cli_entry *e, int cmd, struct ast_cli_args
AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(field)[100];
);
- struct ast_str *sql = ast_str_thread_get(&sql_buf, 16);
+ struct ast_str *sql;
char *char_args, varname[10];
struct acf_odbc_query *query;
struct ast_channel *chan;
@@ -1005,6 +1005,11 @@ static char *cli_odbc_read(struct ast_cli_entry *e, int cmd, struct ast_cli_args
return CLI_SHOWUSAGE;
}
+ sql = ast_str_thread_get(&sql_buf, 16);
+ if (!sql) {
+ return CLI_FAILURE;
+ }
+
AST_RWLIST_RDLOCK(&queries);
AST_RWLIST_TRAVERSE(&queries, query, list) {
if (!strcmp(query->acf->name, a->argv[2])) {
@@ -1156,7 +1161,7 @@ static char *cli_odbc_write(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(field)[100];
);
- struct ast_str *sql = ast_str_thread_get(&sql_buf, 16);
+ struct ast_str *sql;
char *char_args, *char_values, varname[10];
struct acf_odbc_query *query;
struct ast_channel *chan;
@@ -1198,6 +1203,11 @@ static char *cli_odbc_write(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
return CLI_SHOWUSAGE;
}
+ sql = ast_str_thread_get(&sql_buf, 16);
+ if (!sql) {
+ return CLI_FAILURE;
+ }
+
AST_RWLIST_RDLOCK(&queries);
AST_RWLIST_TRAVERSE(&queries, query, list) {
if (!strcmp(query->acf->name, a->argv[2])) {