Browse Source

- Fix build

migration/RELEASE_1_0_0
Marcus Boerger 21 years ago
parent
commit
802fa95416
  1. 4
      main/rfc1867.c

4
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));

Loading…
Cancel
Save