From: Mark Michelson Date: Wed, 16 Jul 2008 19:57:02 +0000 (+0000) Subject: Don't try to dereference the dbfile pointer if X-Git-Tag: 1.6.2.0-beta1~1668 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=255a968023813583ed759230fb0e2dc099e97638;p=thirdparty%2Fasterisk.git 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 --- diff --git a/res/res_config_sqlite.c b/res/res_config_sqlite.c index a2c72d1829..c1ee895bfe 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; }