From fa98eb2aeae9858832c1ed45b4e2e62204e2b208 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Wed, 29 May 2013 19:54:01 +0000 Subject: [PATCH] Remove unused RAII vars. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@390042 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/channel.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/main/channel.c b/main/channel.c index 8d6262521b..d32a8c8834 100644 --- a/main/channel.c +++ b/main/channel.c @@ -1366,7 +1366,6 @@ static void publish_channel_blob(struct ast_channel *chan, /*! \brief Queue a hangup frame for channel */ int ast_queue_hangup(struct ast_channel *chan) { - RAII_VAR(struct stasis_message *, message, NULL, ao2_cleanup); struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_HANGUP }; int res; @@ -1384,7 +1383,6 @@ int ast_queue_hangup(struct ast_channel *chan) int ast_queue_hangup_with_cause(struct ast_channel *chan, int cause) { RAII_VAR(struct ast_json *, blob, NULL, ast_json_unref); - RAII_VAR(struct stasis_message *, message, NULL, ao2_cleanup); struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_HANGUP }; int res; @@ -1410,7 +1408,6 @@ int ast_queue_hangup_with_cause(struct ast_channel *chan, int cause) int ast_queue_hold(struct ast_channel *chan, const char *musicclass) { RAII_VAR(struct ast_json *, blob, NULL, ast_json_unref); - RAII_VAR(struct stasis_message *, message, NULL, ao2_cleanup); struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_HOLD }; int res; @@ -1430,7 +1427,6 @@ int ast_queue_hold(struct ast_channel *chan, const char *musicclass) int ast_queue_unhold(struct ast_channel *chan) { - RAII_VAR(struct stasis_message *, message, NULL, ao2_cleanup); struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_UNHOLD }; int res;