summaryrefslogtreecommitdiff
path: root/res/res_ari_applications.c
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-06-13 10:33:34 -0600
committerGeorge Joseph <gjoseph@digium.com>2017-06-15 19:34:03 -0500
commit1ac009651265460a3093671de1b33dc4ad6eda0b (patch)
tree4c66c7ac85e9da44ac5f6a2a5914bdc945fc4ba2 /res/res_ari_applications.c
parent41bd01c861878c3fe956b037e852394c230c24dc (diff)
res_ari: Add "module loaded" check to ari stubs
The recent change to make the use of LOAD_DECLINE more consistent caused res_ari to unload itself before declining if the ari.conf file wasn't found. The ari stubs though still tried to use the configuration resulting in segfaults. This patch creates a new CHECK_ARI_MODULE_LOADED macro which tests to see if res_ari is actually loaded and causes the stubs to also decline if it isn't. The macro was then added to the mustache template's "load_module" function. ASTERISK-27026 #close Reported-by: Ronald Raikes Change-Id: I263d56efa628ee3c411bdcd16d49af6260c6c91d
Diffstat (limited to 'res/res_ari_applications.c')
-rw-r--r--res/res_ari_applications.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/res/res_ari_applications.c b/res/res_ari_applications.c
index 21d9f56eb..cf700c464 100644
--- a/res/res_ari_applications.c
+++ b/res/res_ari_applications.c
@@ -500,6 +500,10 @@ static int unload_module(void)
static int load_module(void)
{
int res = 0;
+
+ CHECK_ARI_MODULE_LOADED();
+
+
stasis_app_ref();
res |= ast_ari_add_handler(&applications);
if (res) {