aboutsummaryrefslogtreecommitdiffstats
path: root/cdr/cdr_custom.c
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-19 19:25:14 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-19 19:25:14 +0000
commitf93ebdba02a7563314d5417a63a7e2de516663c1 (patch)
treed96fa0b3cb5fba3fb499b6f6faf3fd29f768cc8d /cdr/cdr_custom.c
parent84d63d33cab0213edc53a79bfae943c0fe38a252 (diff)
Fix checking for CONFIG_STATUS_FILEINVALID so that modules don't crash upon trying to parse an invalid config
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@157818 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'cdr/cdr_custom.c')
-rw-r--r--cdr/cdr_custom.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cdr/cdr_custom.c b/cdr/cdr_custom.c
index 6ecef8af4..45207750a 100644
--- a/cdr/cdr_custom.c
+++ b/cdr/cdr_custom.c
@@ -67,6 +67,11 @@ static int load_config(int reload)
if ((cfg = ast_config_load("cdr_custom.conf", config_flags)) == CONFIG_STATUS_FILEUNCHANGED)
return 0;
+ if (cfg == CONFIG_STATUS_FILEINVALID) {
+ ast_log(LOG_ERROR, "Invalid config file\n");
+ return 1;
+ }
+
strcpy(format, "");
strcpy(master, "");
ast_mutex_lock(&lock);