#
4b9db65f |
| 15-Oct-2020 |
Christoph M. Becker |
Fix broken fix for #80239 No idea why that `git am` failed that badly. |
#
42d68443 |
| 15-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into master * PHP-8.0: Fix #80239: imap_rfc822_write_address() leaks memory
|
#
b7c1834c |
| 15-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80239: imap_rfc822_write_address() leaks memory
|
#
7899ac4c |
| 15-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #80239: imap_rfc822_write_address() leaks memory
|
#
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. |
#
6af54d86 |
| 13-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into master * PHP-8.0: Fix #64076: imap_sort() does not return FALSE on failure
|
#
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 ...
|
#
98a20acb |
| 13-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into master * PHP-8.0: Ignore memory leaks reported for some libc-client functions
|
#
ade146c9 |
| 13-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Ignore memory leaks reported for some libc-client functions
|
#
9c7b6073 |
| 12-Oct-2020 |
Christoph M. Becker |
Ignore memory leaks reported for some libc-client functions At least on Windows, some static variables are lazily initialized during `mail_open()` and `mail_lsub()`, which are reported a
Ignore memory leaks reported for some libc-client functions At least on Windows, some static variables are lazily initialized during `mail_open()` and `mail_lsub()`, which are reported as memory leaks. We suppress these false positives. Closes GH-6326.
show more ...
|
#
d523de69 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into master * PHP-8.0: Fix #80226: imap_sort() leaks sortpgm memory
|
#
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. |
#
51cb9b83 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into master * PHP-8.0: Change parameters types from int to bool
|
#
8d4774a2 |
| 12-Oct-2020 |
Christoph M. Becker |
Change parameters types from int to bool These are typical boolean parameters, so we shouldn't advertize them as integers. For the `$reverse` parameter that even fixes expectations,
Change parameters types from int to bool These are typical boolean parameters, so we shouldn't advertize them as integers. For the `$reverse` parameter that even fixes expectations, because the `reverse` member is a bitfield of 1 bit, so assigning any even integer would not set it. Closes GH-6328.
show more ...
|
#
8e4022b4 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into master * PHP-8.0: Fix #80216: imap_mail_compose() does not validate types/encodings
|
#
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 ...
|
#
2e17c937 |
| 12-Oct-2020 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into master * PHP-8.0: Fix #80223: imap_mail_compose() leaks envelope on malformed bodies
|
#
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
|