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
This commit is contained in:
Mark Michelson
2008-07-16 19:57:02 +00:00
parent b35c06d838
commit 255a968023

View File

@@ -600,7 +600,7 @@ static int set_var(char **var, const char *name, const char *value)
static int check_vars(void) static int check_vars(void)
{ {
if (!dbfile) { if (!dbfile) {
ast_log(LOG_ERROR, "Undefined parameter %s\n", dbfile); ast_log(LOG_ERROR, "Required parameter undefined: dbfile\n");
return 1; return 1;
} }