This commit is contained in:
Nikita Popov 2017-07-23 11:06:01 +02:00
parent 80463579ce
commit bd63c0f5b3
2 changed files with 4 additions and 2 deletions

3
NEWS
View File

@ -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)

View File

@ -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 {