]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
app_confbridge: Fix ref leak in CLI "confbridge kick" command.
authorRichard Mudgett <rmudgett@digium.com>
Wed, 7 May 2014 20:29:09 +0000 (20:29 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Wed, 7 May 2014 20:29:09 +0000 (20:29 +0000)
Fixed ref leak in the CLI "confbridge kick" command when the channel to be
kicked was not in the conference.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@413451 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_confbridge.c

index 4b4729fe0f2188635daa25852bb5e604ac2f8460..fc44197a9d47836a3b67309d2055928460218cf1 100644 (file)
@@ -2228,6 +2228,7 @@ static char *handle_cli_confbridge_kick(struct ast_cli_entry *e, int cmd, struct
 {
        struct conference_bridge *bridge = NULL;
        struct conference_bridge tmp;
+       int not_found;
 
        switch (cmd) {
        case CLI_INIT:
@@ -2256,11 +2257,12 @@ static char *handle_cli_confbridge_kick(struct ast_cli_entry *e, int cmd, struct
                ast_cli(a->fd, "No conference bridge named '%s' found!\n", a->argv[2]);
                return CLI_SUCCESS;
        }
-       if (kick_conference_participant(bridge, a->argv[3])) {
+       not_found = kick_conference_participant(bridge, a->argv[3]);
+       ao2_ref(bridge, -1);
+       if (not_found) {
                ast_cli(a->fd, "No participant named '%s' found!\n", a->argv[3]);
                return CLI_SUCCESS;
        }
-       ao2_ref(bridge, -1);
        ast_cli(a->fd, "Participant '%s' kicked out of conference '%s'\n", a->argv[3], a->argv[2]);
        return CLI_SUCCESS;
 }
@@ -2857,7 +2859,7 @@ static int action_confbridgekick(struct mansession *s, const struct message *m)
        const char *channel = astman_get_header(m, "Channel");
        struct conference_bridge *bridge = NULL;
        struct conference_bridge tmp;
-       int found = 0;
+       int found;
 
        if (ast_strlen_zero(conference)) {
                astman_send_error(s, m, "No Conference name provided.");