mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
Fix bug #73528
This commit is contained in:
parent
80463579ce
commit
bd63c0f5b3
3
NEWS
3
NEWS
@ -11,6 +11,9 @@ PHP NEWS
|
||||
. Added ldap_exop_refresh helper for EXOP REFRESH operation with dds overlay.
|
||||
(Come)
|
||||
|
||||
- Mbstring:
|
||||
. Fixed bug #73528 (Crash in zif_mb_send_mail). (Nikita)
|
||||
|
||||
- ODBC:
|
||||
. Removed support for Birdstep. (Kalle)
|
||||
|
||||
|
@ -4315,7 +4315,6 @@ out:
|
||||
|
||||
PHP_FUNCTION(mb_send_mail)
|
||||
{
|
||||
size_t n;
|
||||
char *to;
|
||||
size_t to_len;
|
||||
char *message;
|
||||
@ -4325,7 +4324,7 @@ PHP_FUNCTION(mb_send_mail)
|
||||
zval *headers = NULL;
|
||||
zend_string *extra_cmd = NULL;
|
||||
zend_string *str_headers = NULL, *tmp_headers;
|
||||
int i;
|
||||
size_t n, i;
|
||||
char *to_r = NULL;
|
||||
char *force_extra_parameters = INI_STR("mail.force_extra_parameters");
|
||||
struct {
|
||||
|
Loading…
Reference in New Issue
Block a user