From 9e2706743b1dd8638d6d9de1106aa23e2870aa5e Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Tue, 13 Oct 2020 16:20:55 +0200 Subject: [PATCH] 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. --- ext/imap/php_imap.c | 3 +++ ext/imap/tests/bug64076.phpt | 23 +++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 ext/imap/tests/bug64076.phpt diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index a88c329b01dff..db144b0d49fc3 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -3181,6 +3181,9 @@ PHP_FUNCTION(imap_sort) } else { spg = mail_newsearchpgm(); } + if (spg == NIL) { + RETURN_FALSE; + } mypgm = mail_newsortpgm(); mypgm->reverse = rev; diff --git a/ext/imap/tests/bug64076.phpt b/ext/imap/tests/bug64076.phpt new file mode 100644 index 0000000000000..ccafcfe2513b7 --- /dev/null +++ b/ext/imap/tests/bug64076.phpt @@ -0,0 +1,23 @@ +--TEST-- +Bug #64076 (imap_sort() does not return FALSE on failure) +--SKIPIF-- + +--FILE-- + +--CLEAN-- + +--EXPECT-- +Create a temporary mailbox and add 2 msgs +.. mailbox '{127.0.0.1:143/norsh}INBOX.phpttest' created +bool(false) +bool(true)