mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -97,7 +97,7 @@ static int load_config(void) | ||||
| 	struct ast_flags config_flags = { 0 }; /* Part of our config comes from the database */ | ||||
|  | ||||
| 	cfg = ast_config_load(CONFIG, config_flags); | ||||
| 	if (!cfg) { | ||||
| 	if (!cfg || cfg == CONFIG_STATUS_FILEINVALID) { | ||||
| 		ast_log(LOG_WARNING, "Unable to load " CONFIG ".  No adaptive ODBC CDRs.\n"); | ||||
| 		return -1; | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user