mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
First patch to re-order function parameters. This one gets the low hanging
fruit, and moves most of the result parameters to the first argument. Future patches in this series will move the rest of the result parameters to the beginning of the list, and will move the context's to the end of the list git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83927 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -740,7 +740,7 @@ static request_rec *make_sub_request(const request_rec *r)
|
||||
ap_context_t *rrp;
|
||||
request_rec *rr;
|
||||
|
||||
ap_create_context(r->pool, &rrp);
|
||||
ap_create_context(&rrp, r->pool);
|
||||
rr = ap_pcalloc(rrp, sizeof(request_rec));
|
||||
rr->pool = rrp;
|
||||
return rr;
|
||||
|
Reference in New Issue
Block a user