You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2005/10/15 23:56:29 UTC

svn commit: r321504 - /httpd/httpd/branches/2.2.x/modules/http/http_request.c

Author: nd
Date: Sat Oct 15 14:56:25 2005
New Revision: 321504

URL: http://svn.apache.org/viewcvs?rev=321504&view=rev
Log:
* modules/http/http_request.c
  (ap_allow_methods): add missing va_end call

Modified:
    httpd/httpd/branches/2.2.x/modules/http/http_request.c

Modified: httpd/httpd/branches/2.2.x/modules/http/http_request.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/modules/http/http_request.c?rev=321504&r1=321503&r2=321504&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/modules/http/http_request.c (original)
+++ httpd/httpd/branches/2.2.x/modules/http/http_request.c Sat Oct 15 14:56:25 2005
@@ -530,6 +530,7 @@
     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, ...)