From: Daniel Gruno Date: Fri, 17 Aug 2012 15:12:41 +0000 (+0000) Subject: Add the missing state release to the LuaMapHandler handler as well, so we won't end... X-Git-Tag: 2.5.0-alpha~6415 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4141f17715210afd26a3567ab938c5f72d3a009c;p=thirdparty%2Fapache%2Fhttpd.git Add the missing state release to the LuaMapHandler handler as well, so we won't end in a potential deadlock when acquiring states for in the server scope. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1374310 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/lua/mod_lua.c b/modules/lua/mod_lua.c index ed1ca2384fe..b9f48343e4f 100644 --- a/modules/lua/mod_lua.c +++ b/modules/lua/mod_lua.c @@ -454,6 +454,7 @@ static int lua_map_handler(request_rec *r) ap_lua_release_state(L, spec, r); return rc; } + ap_lua_release_state(L, spec, r); } } return DECLINED;