mirror of
https://github.com/php/php-src.git
synced 2026-04-26 09:28:21 +02:00
5aaffc8095
Closes GH-6476
14 lines
228 B
PHP
14 lines
228 B
PHP
--TEST--
|
|
Bug #77020 (null pointer dereference in imap_mail)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('imap')) die('skip imap extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
@imap_mail('1', 1, NULL);
|
|
echo 'done'
|
|
?>
|
|
--EXPECTF--
|
|
%Adone
|