summaryrefslogtreecommitdiff
path: root/pbx/pbx_dundi.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2008-11-19 19:25:14 +0000
committerTerry Wilson <twilson@digium.com>2008-11-19 19:25:14 +0000
commitd66a8cd26481d94426cbbffef212f63d5c0da378 (patch)
treed96fa0b3cb5fba3fb499b6f6faf3fd29f768cc8d /pbx/pbx_dundi.c
parent3d8fb2d878868149586b5c0b5fa9d6d75ae25237 (diff)
Fix checking for CONFIG_STATUS_FILEINVALID so that modules don't crash upon trying to parse an invalid config
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@157818 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/pbx_dundi.c')
-rw-r--r--pbx/pbx_dundi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/pbx_dundi.c b/pbx/pbx_dundi.c
index 2b2ff6ef8..08177723f 100644
--- a/pbx/pbx_dundi.c
+++ b/pbx/pbx_dundi.c
@@ -4558,7 +4558,7 @@ static int set_config(char *config_file, struct sockaddr_in* sin, int reload)
int globalpcmodel = 0;
dundi_eid testeid;
- if (!(cfg = ast_config_load(config_file, config_flags))) {
+ if (!(cfg = ast_config_load(config_file, config_flags)) || cfg == CONFIG_STATUS_FILEINVALID) {
ast_log(LOG_ERROR, "Unable to load config %s\n", config_file);
return -1;
} else if (cfg == CONFIG_STATUS_FILEUNCHANGED)