diff options
| author | Zeev Suraski <zeev@php.net> | 1999-09-16 23:18:15 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-09-16 23:18:15 +0000 |
| commit | 98d95dd88eec996ad2608b357dd03bc7930b3fb4 (patch) | |
| tree | 37e11a02653d9b857dc7659f84e2a809a5b017f7 /main/rfc1867.c | |
| parent | 52e769d8835d06af547c7438282fd4c6fcd88583 (diff) | |
| download | php-git-98d95dd88eec996ad2608b357dd03bc7930b3fb4.tar.gz | |
- Added support for unknown POST content types (Zeev)
- Introduce the convert_to_*_ex() API in strlen()
Diffstat (limited to 'main/rfc1867.c')
| -rw-r--r-- | main/rfc1867.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index d8ba333130..d210d091a9 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -253,7 +253,7 @@ SAPI_POST_READER_FUNC(rfc1867_post_reader) sapi_read_standard_form_data(content_type_dup SLS_CC); if (SG(request_info).post_data) { - php_mime_split(SG(request_info).post_data, SG(request_info).content_length, boundary); + php_mime_split(SG(request_info).post_data, SG(request_info).post_data_length, boundary); efree(SG(request_info).post_data); SG(request_info).post_data = NULL; } |
