mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
Don't attempt to proceed if our internal parser indicates an invalid file.
(closes issue #17560) Reported by: Nick_Lewis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@273142 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1902,7 +1902,9 @@ int read_config_maps(void)
|
||||
configtmp = ast_config_new();
|
||||
configtmp->max_include_level = 1;
|
||||
config = ast_config_internal_load(extconfig_conf, configtmp, flags, "", "extconfig");
|
||||
if (!config) {
|
||||
if (config == CONFIG_STATUS_FILEINVALID) {
|
||||
return -1;
|
||||
} else if (!config) {
|
||||
ast_config_destroy(configtmp);
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user