Skip to content
Snippets Groups Projects
Commit 04429e5c authored by Richard Mudgett's avatar Richard Mudgett
Browse files

app_stack: Add missing unlock in off-nominal path of STACK_PEEK function.

ASTERISK-23620 #close
Reported by: Bradley Watkins
Patches:
      ASTERISK-23620_unlock_oldlist.patch (license #5021) patch uploaded by Bradley Watkins
........

Merged revisions 412225 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........

Merged revisions 412226 from http://svn.asterisk.org/svn/asterisk/branches/11
........

Merged revisions 412227 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@412228 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 43bcf512
Branches
Tags
No related merge requests found
...@@ -873,6 +873,7 @@ static int stackpeek_read(struct ast_channel *chan, const char *cmd, char *data, ...@@ -873,6 +873,7 @@ static int stackpeek_read(struct ast_channel *chan, const char *cmd, char *data,
if (!ast_true(args.suppress)) { if (!ast_true(args.suppress)) {
ast_log(LOG_ERROR, "Stack peek of '%s' is more stack frames than I have\n", args.n); ast_log(LOG_ERROR, "Stack peek of '%s' is more stack frames than I have\n", args.n);
} }
AST_LIST_UNLOCK(oldlist);
ast_channel_unlock(chan); ast_channel_unlock(chan);
return -1; return -1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment