summaryrefslogtreecommitdiff
path: root/main/rfc1867.c
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2010-03-18 22:37:25 +0000
committerAndrei Zmievski <andrei@php.net>2010-03-18 22:37:25 +0000
commitf92fae2f6690a10edb547e85f550945a4e2072bd (patch)
tree87188124dc7a05ab4f511dbf1de0e0eaa02af6e2 /main/rfc1867.c
parent3220f15ca2859621d3cec72514bf782633d90ff0 (diff)
downloadphp-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.c5
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)