#
5941b30b |
| 15-Oct-2020 |
Christoph M. Becker |
Fix #80239: imap_rfc822_write_address() leaks memory We have to free the address when we're finished with it. |
#
4da2bebd |
| 13-Oct-2020 |
Sara Golemon |
Update NEWS for 8.0.0RC3 |
#
431421d1 |
| 13-Oct-2020 |
Sara Golemon |
Update NEWS for PHP 8.0.0RC2 |
#
5aec24c4 |
| 13-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #64076: imap_sort() does not return FALSE on failure
|
#
d9058b61 |
| 13-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #64076: imap_sort() does not return FALSE on failure
|
#
db8bf0a9 |
| 13-Oct-2020 |
Christoph M. Becker |
Fix #64076: imap_sort() does not return FALSE on failure If unsupported `$search_criteria` are passed to `imap_sort()`, the function returns an empty array, but there is also an error on
Fix #64076: imap_sort() does not return FALSE on failure If unsupported `$search_criteria` are passed to `imap_sort()`, the function returns an empty array, but there is also an error on the libc-client error stack ("Unknown search criterion: UNSUPPORTED (errflg=2)"). If, on the other hand, unsupported `$criteria` or unsupported `$flags` are passed, the function returns `false`. We solve this inconsistency by returning `false` for unsupported `$search_criteria` as well. Closes GH-6332.
show more ...
|
#
8fd8a1b1 |
| 13-Oct-2020 |
Derick Rethans |
Prepare for 7.4.13 |
#
2d01a89a |
| 13-Oct-2020 |
Christoph M. Becker |
7.3.25 is next |
#
818eb8f6 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80226: imap_sort() leaks sortpgm memory
|
#
12fc8f66 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #80226: imap_sort() leaks sortpgm memory
|
#
8488c34f |
| 12-Oct-2020 |
Christoph M. Becker |
Fix #80226: imap_sort() leaks sortpgm memory We need to free what we have allocated. Closes GH-6327. |
#
f9b7609d |
| 12-Oct-2020 |
Nikita Popov |
Fixed bug #80225 Namespaced and declares have a different interpretation of what "first statement" means. |
#
11c752a5 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80216: imap_mail_compose() does not validate types/encodings
|
#
216d6a02 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #80216: imap_mail_compose() does not validate types/encodings
|
#
73e43b6e |
| 12-Oct-2020 |
Christoph M. Becker |
Fix #80216: imap_mail_compose() does not validate types/encodings We need to check whether the given `type`s and `encoding`s are within bounds to avoid segfaults and out-of-bound reads.
Fix #80216: imap_mail_compose() does not validate types/encodings We need to check whether the given `type`s and `encoding`s are within bounds to avoid segfaults and out-of-bound reads. Closes GH-6323.
show more ...
|
#
0443c824 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80223: imap_mail_compose() leaks envelope on malformed bodies
|
#
4a469c7e |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #80223: imap_mail_compose() leaks envelope on malformed bodies
|
#
c1962e90 |
| 12-Oct-2020 |
Christoph M. Becker |
Fix #80223: imap_mail_compose() leaks envelope on malformed bodies We have to clean up even on failure. Closes GH-6322. |
#
5a8958f0 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80220: imap_mail_compose() may leak memory
|
#
acce991a |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #80220: imap_mail_compose() may leak memory
|
#
0d022ddf |
| 12-Oct-2020 |
Christoph M. Becker |
Fix #80220: imap_mail_compose() may leak memory Unless `topbod` is of `TYPEMULTIPART`, `mail_free_body()` does not free the `nested.part`; while we could do this ourselves, instead we ju
Fix #80220: imap_mail_compose() may leak memory Unless `topbod` is of `TYPEMULTIPART`, `mail_free_body()` does not free the `nested.part`; while we could do this ourselves, instead we just ignore additional bodies in this case, i.e. we don't attach them in the first place. Closes GH-6321.
show more ...
|
#
d72c6480 |
| 11-Oct-2020 |
Christoph M. Becker |
Remove return types from XMLWriter stubs These break BC, and as such we have to stick with docblock annotations. Closes GH-6319. |
#
6494e578 |
| 10-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80215: imap_mail_compose() may modify by-val parameters
|
#
7940fb42 |
| 10-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #80215: imap_mail_compose() may modify by-val parameters
|
#
62a2387a |
| 10-Oct-2020 |
Christoph M. Becker |
Fix #80215: imap_mail_compose() may modify by-val parameters We separate the input arrays and all sub-arrays to avoid modification of the passed parameters. This should be rewri
Fix #80215: imap_mail_compose() may modify by-val parameters We separate the input arrays and all sub-arrays to avoid modification of the passed parameters. This should be rewritten to use `zend_string`s for the "master" branch. Closes GH-6316.
show more ...
|