Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 8592 invoked from network); 29 Apr 2007 03:46:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Apr 2007 03:46:18 -0000 Received: (qmail 90879 invoked by uid 500); 29 Apr 2007 03:46:25 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 90865 invoked by uid 500); 29 Apr 2007 03:46:25 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: apreq-dev@httpd.apache.org List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 90854 invoked by uid 99); 29 Apr 2007 03:46:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Apr 2007 20:46:25 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Apr 2007 20:46:17 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 9CC321A9838; Sat, 28 Apr 2007 20:45:57 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r533460 - in /httpd/apreq/trunk: include/apreq_version.h library/module_custom.c Date: Sun, 29 Apr 2007 03:45:57 -0000 To: apreq-cvs@httpd.apache.org From: joes@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070429034557.9CC321A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: joes Date: Sat Apr 28 20:45:54 2007 New Revision: 533460 URL: http://svn.apache.org/viewvc?view=rev&rev=533460 Log: Add missing initializer for custom module. Modified: httpd/apreq/trunk/include/apreq_version.h httpd/apreq/trunk/library/module_custom.c Modified: httpd/apreq/trunk/include/apreq_version.h URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/include/apreq_version.h?view=diff&rev=533460&r1=533459&r2=533460 ============================================================================== --- httpd/apreq/trunk/include/apreq_version.h (original) +++ httpd/apreq/trunk/include/apreq_version.h Sat Apr 28 20:45:54 2007 @@ -62,7 +62,7 @@ #define APREQ_MINOR_VERSION 6 /** patch level */ -#define APREQ_PATCH_VERSION 2 +#define APREQ_PATCH_VERSION 3 /** * This symbol is defined for internal, "development" copies of libapreq. Modified: httpd/apreq/trunk/library/module_custom.c URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/library/module_custom.c?view=diff&rev=533460&r1=533459&r2=533460 ============================================================================== --- httpd/apreq/trunk/library/module_custom.c (original) +++ httpd/apreq/trunk/library/module_custom.c Sat Apr 28 20:45:54 2007 @@ -250,7 +250,7 @@ } -static APREQ_MODULE(custom, 20050516); +static APREQ_MODULE(custom, 20070428); APREQ_DECLARE(apreq_handle_t *)apreq_handle_custom(apr_pool_t *pool, const char *query_string, @@ -265,6 +265,7 @@ req->handle.pool = pool; req->handle.bucket_alloc = in->bucket_alloc; req->read_limit = read_limit; + req->bytes_read = 0; req->parser = parser; req->in = apr_brigade_create(pool, in->bucket_alloc); req->tmpbb = apr_brigade_create(pool, in->bucket_alloc);