Merge "main/asterisk.c: Remove silly usage of RAII_VAR."

This commit is contained in:
Jenkins2 2018-02-14 12:55:18 -06:00 committed by Gerrit Code Review
commit d6147aa6a3
1 changed files with 2 additions and 1 deletions

View File

@ -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)