From 4c372e41a2658e7f3bf8f2928dc761c0b1a78f25 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 27 Jul 2008 21:12:14 +0000 Subject: [PATCH] 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 --- funcs/func_config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/funcs/func_config.c b/funcs/func_config.c index 33f822b4ac..0c734e0c96 100644 --- a/funcs/func_config.c +++ b/funcs/func_config.c @@ -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; }