From cvs-return-30722-apmail-httpd-cvs-archive=httpd.apache.org@httpd.apache.org Wed Aug 06 14:47:56 2008 Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 58724 invoked from network); 6 Aug 2008 14:47:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Aug 2008 14:47:56 -0000 Received: (qmail 70739 invoked by uid 500); 6 Aug 2008 14:47:55 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 70539 invoked by uid 500); 6 Aug 2008 14:47:55 -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 70530 invoked by uid 99); 6 Aug 2008 14:47:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2008 07:47:55 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Wed, 06 Aug 2008 14:47:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 72BF92388876; Wed, 6 Aug 2008 07:47:05 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r683284 - /httpd/httpd/trunk/modules/mappers/mod_rewrite.c Date: Wed, 06 Aug 2008 14:47:05 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080806144705.72BF92388876@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jorton Date: Wed Aug 6 07:47:04 2008 New Revision: 683284 URL: http://svn.apache.org/viewvc?rev=683284&view=rev Log: * modules/mappers/mod_rewrite.c (cmd_rewritelock): Add missing sentinel. Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mappers/mod_rewrite.c?rev=683284&r1=683283&r2=683284&view=diff ============================================================================== --- httpd/httpd/trunk/modules/mappers/mod_rewrite.c (original) +++ httpd/httpd/trunk/modules/mappers/mod_rewrite.c Wed Aug 6 07:47:04 2008 @@ -3110,7 +3110,7 @@ lockname = ap_server_root_relative(cmd->pool, a1); if (!lockname) { - return apr_pstrcat(cmd->pool, "Invalid RewriteLock path ", a1); + return apr_pstrcat(cmd->pool, "Invalid RewriteLock path ", a1, NULL); } return NULL;