From: Russell Bryant Date: Sun, 27 Jul 2008 21:12:14 +0000 (+0000) Subject: Add a missing unlock within error handling X-Git-Tag: 1.6.2.0-beta1~1574 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c372e41a2658e7f3bf8f2928dc761c0b1a78f25;p=thirdparty%2Fasterisk.git 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 --- 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; }