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

veto and revert win64 patch: 64bit changes must percolate from the

bottom (APR/system) up -- we can't give the client a 64bit API and
then cast it to 32bits internally without introducing security holes
on other platforms.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105572 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Roy T. Fielding
2004-10-23 22:39:53 +00:00
parent 41ee74561c
commit c76dd4ecef
13 changed files with 68 additions and 84 deletions

View File

@@ -662,7 +662,7 @@ static int lookup_builtin_method(const char *method, apr_size_t len)
*/
AP_DECLARE(int) ap_method_number_of(const char *method)
{
apr_size_t len = strlen(method);
int len = strlen(method);
int which = lookup_builtin_method(method, len);
if (which != UNKNOWN_METHOD)
@@ -1858,7 +1858,7 @@ static long get_chunk_size(char *b)
* Returns 0 on End-of-body, -1 on error or premature chunk end.
*
*/
AP_DECLARE(apr_ssize_t) ap_get_client_block(request_rec *r, char *buffer,
AP_DECLARE(long) ap_get_client_block(request_rec *r, char *buffer,
apr_size_t bufsiz)
{
apr_status_t rv;