You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2007/04/29 05:45:57 UTC

svn commit: r533460 - in /httpd/apreq/trunk: include/apreq_version.h library/module_custom.c

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);