File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 7
7
fulfilled by traits). (Nikita)
8
8
9
9
- IMAP:
10
+ . Fixed bug #76618 (segfault on imap_reopen). (girgias)
10
11
. Fixed bug #80239 (imap_rfc822_write_address() leaks memory). (cmb)
11
12
. Fixed minor regression caused by fixing bug #80220. (cmb)
12
13
. Fixed bug #80242 (imap_mail_compose() segfaults for multipart with rfc822).
Original file line number Diff line number Diff line change @@ -867,7 +867,7 @@ PHP_FUNCTION(imap_reopen)
867
867
868
868
imap_le_struct -> imap_stream = mail_open (imap_le_struct -> imap_stream , ZSTR_VAL (mailbox ), flags );
869
869
if (imap_le_struct -> imap_stream == NIL ) {
870
- zend_list_delete (Z_RES_P (streamind ));
870
+ zend_list_close (Z_RES_P (streamind ));
871
871
php_error_docref (NULL , E_WARNING , "Couldn't re-open stream" );
872
872
RETURN_FALSE ;
873
873
}
You can’t perform that action at this time.
0 commit comments