summaryrefslogtreecommitdiff
path: root/res/res_config_sqlite.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-07-16 19:57:02 +0000
committerMark Michelson <mmichelson@digium.com>2008-07-16 19:57:02 +0000
commit255a968023813583ed759230fb0e2dc099e97638 (patch)
treedd1bf4d4c8b6eb5b79c629301946206224288d7d /res/res_config_sqlite.c
parentb35c06d8388732609ccec65b5bd8e93bd1c81e4b (diff)
Don't try to dereference the dbfile pointer if
we know that it's NULL. (closes issue #13092) Reported by: gknispel_proformatique Patches: trunk_sqlite_check_vars_null.patch uploaded by gknispel (license 261) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@131361 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_config_sqlite.c')
-rw-r--r--res/res_config_sqlite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_config_sqlite.c b/res/res_config_sqlite.c
index a2c72d182..c1ee895bf 100644
--- a/res/res_config_sqlite.c
+++ b/res/res_config_sqlite.c
@@ -600,7 +600,7 @@ static int set_var(char **var, const char *name, const char *value)
static int check_vars(void)
{
if (!dbfile) {
- ast_log(LOG_ERROR, "Undefined parameter %s\n", dbfile);
+ ast_log(LOG_ERROR, "Required parameter undefined: dbfile\n");
return 1;
}