From: André Malo Date: Sat, 15 Oct 2005 21:56:25 +0000 (+0000) Subject: * modules/http/http_request.c X-Git-Tag: 2.1.9~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6d99c58a6cbc894cb791c0c7d7c676599a67d40;p=thirdparty%2Fapache%2Fhttpd.git * modules/http/http_request.c (ap_allow_methods): add missing va_end call git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@321504 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 22c23af6da6..1bae06f48c7 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -530,6 +530,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, ...)