Add a missing unlock within error handling

(closes issue #13176)
Reported by: pj


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@134005 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2008-07-27 21:12:14 +00:00
parent 6ff47b3729
commit 4c372e41a2
1 changed files with 1 additions and 0 deletions

View File

@ -146,6 +146,7 @@ static int config_function_read(struct ast_channel *chan, const char *cmd, char
if (!(val = ast_variable_retrieve(cfg, args.category, args.variable))) {
ast_log(LOG_ERROR, "'%s' not found in [%s] of '%s'\n", args.variable,
args.category, args.filename);
AST_RWLIST_UNLOCK(&configs);
return -1;
}