1
0
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:
Ryan Bloom
1999-10-04 16:38:16 +00:00
parent fe8b49c379
commit 2b361ec557
18 changed files with 54 additions and 54 deletions

View File

@@ -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;