From 76208c10c661f22aa077dfb2fe96a005d0cfcd99 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Fri, 17 Aug 2012 15:12:41 +0000 Subject: [PATCH] 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 --- modules/lua/mod_lua.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.47.3