diff options
author | Andrei Zmievski <andrei@php.net> | 2010-03-18 22:37:25 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2010-03-18 22:37:25 +0000 |
commit | f92fae2f6690a10edb547e85f550945a4e2072bd (patch) | |
tree | 87188124dc7a05ab4f511dbf1de0e0eaa02af6e2 /main/rfc1867.c | |
parent | 3220f15ca2859621d3cec72514bf782633d90ff0 (diff) | |
download | php-git-f92fae2f6690a10edb547e85f550945a4e2072bd.tar.gz |
I am sorry I tried fixing PHP without extensive discussion on the mailing list.
I am sorry I tried fixing PHP without extensive discussion on the mailing list.
I am sorry I tried fixing PHP without extensive discussion on the mailing list.
Hope all the relevant parties are satisfied.
Diffstat (limited to 'main/rfc1867.c')
-rw-r--r-- | main/rfc1867.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index a28da1baf8..9823c759cc 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -764,9 +764,8 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) /* {{{ */ { char *boundary, *s = NULL, *boundary_end = NULL, *start_arr = NULL, *array_index = NULL; char *temp_filename = NULL, *lbuf = NULL, *abuf = NULL; - int boundary_len = 0, cancel_upload = 0, is_arr_upload = 0, array_len = 0; - int skip_upload = 0, anonindex = 0, is_anonymous; - size_t total_bytes = 0, max_file_size = 0; + int boundary_len = 0, total_bytes = 0, cancel_upload = 0, is_arr_upload = 0, array_len = 0; + int max_file_size = 0, skip_upload = 0, anonindex = 0, is_anonymous; zval *http_post_files = NULL; HashTable *uploaded_files = NULL; #if HAVE_MBSTRING && !defined(COMPILE_DL_MBSTRING) |