summaryrefslogtreecommitdiff
path: root/pbx
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2006-09-22 21:34:04 +0000
committerSteve Murphy <murf@digium.com>2006-09-22 21:34:04 +0000
commitbcdb270c57d0576c82fb35f257cf66fde97fe829 (patch)
tree0828761a39a8fe47c3f2e4e5656499285fb95c27 /pbx
parent13ceee6333f002e1932886a0d5ca790966553318 (diff)
This commits a change to return MODULE_LOAD_FAILURE on error, and SUCCESS (instead of 0) when all goes well for bug 8004
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43507 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_ael.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pbx/pbx_ael.c b/pbx/pbx_ael.c
index f460b630f..1594c82b3 100644
--- a/pbx/pbx_ael.c
+++ b/pbx/pbx_ael.c
@@ -3825,10 +3825,12 @@ static int pbx_load_module(void)
ast_log(LOG_NOTICE, "AEL load process: verified config file name '%s'.\n", rfilename);
} else {
ast_log(LOG_ERROR, "Sorry, but %d syntax errors and %d semantic errors were detected. It doesn't make sense to compile.\n", errs, sem_err);
+ destroy_pval(parse_tree); /* free up the memory */
+ return AST_MODULE_LOAD_FAILURE;
}
destroy_pval(parse_tree); /* free up the memory */
- return 0;
+ return AST_MODULE_LOAD_SUCCESS;
}
/* CLI interface */