Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3286395B3 for ; Fri, 18 Nov 2011 13:31:19 +0000 (UTC) Received: (qmail 50500 invoked by uid 500); 18 Nov 2011 13:31:19 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 50454 invoked by uid 500); 18 Nov 2011 13:31:19 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 50447 invoked by uid 99); 18 Nov 2011 13:31:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Nov 2011 13:31:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Nov 2011 13:31:16 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B078A238897A; Fri, 18 Nov 2011 13:30:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1203645 - /httpd/httpd/branches/2.4.x/modules/lua/lua_vmprep.c Date: Fri, 18 Nov 2011 13:30:55 -0000 To: cvs@httpd.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111118133055.B078A238897A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Fri Nov 18 13:30:55 2011 New Revision: 1203645 URL: http://svn.apache.org/viewvc?rev=1203645&view=rev Log: r1203632 from trunk: remove lingering reslist cruft Modified: httpd/httpd/branches/2.4.x/modules/lua/lua_vmprep.c Modified: httpd/httpd/branches/2.4.x/modules/lua/lua_vmprep.c URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/lua/lua_vmprep.c?rev=1203645&r1=1203644&r2=1203645&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/modules/lua/lua_vmprep.c (original) +++ httpd/httpd/branches/2.4.x/modules/lua/lua_vmprep.c Fri Nov 18 13:30:55 2011 @@ -390,18 +390,6 @@ static apr_status_t vm_construct(void ** return APR_SUCCESS; } -static apr_status_t vm_destruct(void *vm, void *params, apr_pool_t *pool) -{ - lua_State *L = (lua_State *)vm; - - (void)params; - (void)pool; - - cleanup_lua(L); - - return APR_SUCCESS; -} - /** * Function used to create a lua_State instance bound into the web * server in the appropriate scope.