]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r321500 from trunk:
authorColm MacCarthaigh <colm@apache.org>
Mon, 23 Jan 2006 19:09:44 +0000 (19:09 +0000)
committerColm MacCarthaigh <colm@apache.org>
Mon, 23 Jan 2006 19:09:44 +0000 (19:09 +0000)
* modules/http/http_request.c
  (ap_allow_methods): add missing va_end call

Submitted by: nd

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@371624 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/http/http_request.c

diff --git a/CHANGES b/CHANGES
index ea56f44a0e51b23ee30213078e2c9e66a4f48cad..fe30da47af56c011197ea7b3e0ae14ca3b22c46c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.0.56
 
+  *) http_request.c: Add missing va_end call. [AndrĂ© Malo]
+
   *) Add httxt2dbm to support/ for creating RewriteMap DBM Files.
      [Paul Querna]
 
diff --git a/STATUS b/STATUS
index 08173e7e83df85d8d623a1d4b0d2e625c5b038dd..722729859f9cec3a9055561ee659a06eb21ec4da 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -144,9 +144,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
        +1: pquerna, jerenkrantz, colm
        jerenkrantz notes: I do prefer the version from r190033 (own if check).
 
-    *) Add missing va_end call
-         http://svn.apache.org/viewcvs?rev=321500&view=rev
-       +1: nd, trawick, colm
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ please place SVN revisions from trunk here, so it is easy to
index d915b31cc000a0249b5a7f173f07e8a7d2da68eb..97b4b649584ca93784af1137bc4617b9d2f7b4ed 100644 (file)
@@ -519,6 +519,7 @@ AP_DECLARE(void) ap_allow_methods(request_rec *r, int reset, ...)
     while ((method = va_arg(methods, const char *)) != NULL) {
         ap_method_list_add(r->allowed_methods, method);
     }
+    va_end(methods);
 }
 
 AP_DECLARE(void) ap_allow_standard_methods(request_rec *r, int reset, ...)