summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/asterisk.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 3e5134b5d..4c15d231f 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -1027,7 +1027,7 @@ int ast_pbx_uuid_get(char *pbx_uuid, int length)
static void publish_fully_booted(void)
{
- RAII_VAR(struct ast_json *, json_object, NULL, ast_json_unref);
+ struct ast_json *json_object;
int uptime = 0;
int lastreloaded = 0;
struct timeval tmp;
@@ -1048,6 +1048,7 @@ static void publish_fully_booted(void)
"Uptime", uptime,
"LastReload", lastreloaded);
ast_manager_publish_event("FullyBooted", EVENT_FLAG_SYSTEM, json_object);
+ ast_json_unref(json_object);
}
static void ast_run_atexits(int run_cleanups)