summaryrefslogtreecommitdiff
path: root/apps/app_userevent.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2013-05-31 19:00:51 +0000
committerKinsey Moore <kmoore@digium.com>2013-05-31 19:00:51 +0000
commit1458a20e47fc1cab9a22a961bff0745f7368b447 (patch)
tree6ecbfd8bb7c54fd331450f6d649fefb927556514 /apps/app_userevent.c
parent680765d452f3c19ed6be54919503e8c7fad905ce (diff)
Refactor code and fix a reference leak
Refactor some channel blob publishing code to use ast_channel_publish_blob now that it is available and fix a JSON reference leak that was occurring during varset publishing. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@390317 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_userevent.c')
-rw-r--r--apps/app_userevent.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/apps/app_userevent.c b/apps/app_userevent.c
index fe037e2f9..e0dafbb9f 100644
--- a/apps/app_userevent.c
+++ b/apps/app_userevent.c
@@ -76,7 +76,6 @@ static int userevent_exec(struct ast_channel *chan, const char *data)
AST_APP_ARG(extra)[100];
);
RAII_VAR(struct ast_json *, blob, NULL, ast_json_unref);
- RAII_VAR(struct stasis_message *, msg, NULL, ao2_cleanup);
if (ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "UserEvent requires an argument (eventname,optional event body)\n");
@@ -115,14 +114,7 @@ static int userevent_exec(struct ast_channel *chan, const char *data)
}
}
- msg = ast_channel_blob_create(
- chan, ast_channel_user_event_type(), blob);
- if (!msg) {
- return -1;
- }
-
- stasis_publish(ast_channel_topic(chan), msg);
-
+ ast_channel_publish_blob(chan, ast_channel_user_event_type(), blob);
return 0;
}