diff options
author | Marcus Boerger <helly@php.net> | 2005-11-11 16:50:08 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-11-11 16:50:08 +0000 |
commit | 802fa954164cb2355ed4bd6076a2274012ae8f15 (patch) | |
tree | d3672ce35f01f19f44a6a72742b1f0b995779e61 /main/rfc1867.c | |
parent | 80390b0122ae9713d2b8bc4af5ad5ad59c7dcbd1 (diff) | |
download | php-git-802fa954164cb2355ed4bd6076a2274012ae8f15.tar.gz |
- Fix build
Diffstat (limited to 'main/rfc1867.c')
-rw-r--r-- | main/rfc1867.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index 54edfec266..d337b62130 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -1045,6 +1045,10 @@ static SAPI_POST_HANDLER_FUNC(rfc1867_post_handler_unicode) U_STRING_DECL(filename_key, "filename", 8); U_STRING_DECL(maxfilesize_key, "MAX_FILE_SIZE", 13); static zend_bool did_string_init = FALSE; +#if HAVE_MBSTRING && !defined(COMPILE_DL_MBSTRING) + int num_vars = 0, *len_list = NULL; + char **val_list = NULL; +#endif if (SG(request_info).content_length > SG(post_max_size)) { sapi_module.sapi_error(E_WARNING, "POST Content-Length of %ld bytes exceeds the limit of %ld bytes", SG(request_info).content_length, SG(post_max_size)); |