18 lines
368 B
PHP
18 lines
368 B
PHP
--TEST--
|
|
GH-20257: heap overflow with empty message and mail.cr_lf_mode=lf set
|
|
--INI--
|
|
sendmail_path="exit 1"
|
|
mail.cr_lf_mode=lf
|
|
--CREDITS--
|
|
YuanchengJiang
|
|
--FILE--
|
|
<?php
|
|
$to = "user@example.com";
|
|
$subject = $message = "";
|
|
var_dump(mail($to, $subject, $message));
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Warning: mail(): Sendmail exited with non-zero exit code 1 in %s on line %d
|
|
bool(false)
|