From 9c1115eb44b127102a8fbb352cab860f00357ba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Malo?= Date: Sat, 15 Oct 2005 21:37:38 +0000 Subject: [PATCH] * modules/http/http_request.c (ap_allow_methods): add missing va_end call git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@321500 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_request.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 22c23af6da..1bae06f48c 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, ...)