mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
c1962e900a
We have to clean up even on failure. Closes GH-6322.
16 lines
432 B
PHP
16 lines
432 B
PHP
--TEST--
|
|
Bug #80223 (imap_mail_compose() leaks envelope on malformed bodies)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('imap')) die('skip imap extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
imap_mail_compose([], []);
|
|
imap_mail_compose([], [1]);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: imap_mail_compose(): body parameter must be a non-empty array in %s on line %d
|
|
|
|
Warning: imap_mail_compose(): body parameter must be a non-empty array in %s on line %d
|