mirror of
https://github.com/php/php-src.git
synced 2026-04-20 14:31:06 +02:00
14 lines
278 B
PHP
14 lines
278 B
PHP
--TEST--
|
|
Bug #80226 (imap_sort() leaks sortpgm memory)
|
|
--SKIPIF--
|
|
<?php
|
|
require_once(__DIR__.'/skipif.inc');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require_once(__DIR__.'/imap_include.inc');
|
|
$stream = imap_open($default_mailbox, $username, $password);
|
|
imap_sort($stream, SORTFROM, 0);
|
|
?>
|
|
--EXPECT--
|