1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

* 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
This commit is contained in:
André Malo
2005-10-15 21:37:38 +00:00
parent 558abd49fa
commit 9c1115eb44

View File

@@ -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, ...)