* 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
-*- 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]
+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
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, ...)