mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fixed bug #71397 (mb_send_mail segmentation fault)
This commit is contained in:
parent
8052df8110
commit
ff10dceff8
3
NEWS
3
NEWS
@ -34,6 +34,9 @@ PHP NEWS
|
||||
. Fixed bug #71249 (ldap_mod_replace/ldap_mod_add store value as string
|
||||
"Array"). (Laruence)
|
||||
|
||||
- mbsgring:
|
||||
. Fixed bug #71397 (mb_send_mail segmentation fault). (Yasuo)
|
||||
|
||||
- SOAP:
|
||||
. Fixed bug #70979 (crash with bad soap request). (Anatol)
|
||||
|
||||
|
@ -4145,7 +4145,7 @@ PHP_FUNCTION(mb_send_mail)
|
||||
suppressed_hdrs.cnt_type = 1;
|
||||
}
|
||||
|
||||
if ((s = zend_hash_str_find_ptr(&ht_headers, "CONTENT-TRANSFER-ENCODING", sizeof("CONTENT-TRANSFER-ENCODING") - 1))) {
|
||||
if ((s = zend_hash_str_find(&ht_headers, "CONTENT-TRANSFER-ENCODING", sizeof("CONTENT-TRANSFER-ENCODING") - 1))) {
|
||||
enum mbfl_no_encoding _body_enc;
|
||||
|
||||
_body_enc = mbfl_name2no_encoding(Z_STRVAL_P(s));
|
||||
|
Loading…
Reference in New Issue
Block a user