diff options
author | Max Rees <maxcrees@me.com> | 2019-03-18 23:14:42 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-03-18 23:20:49 -0400 |
commit | 333e6c234387f048557fdd4235c5a1809474f6f2 (patch) | |
tree | 40bace1ae5c8137247c57686013c81e4f8f18cac /user/php7/CVE-2018-19935.patch | |
parent | 0d7d0dd6b6c5ec2fc29009001cb70c7b5a666257 (diff) | |
download | packages-333e6c234387f048557fdd4235c5a1809474f6f2.tar.gz packages-333e6c234387f048557fdd4235c5a1809474f6f2.tar.bz2 packages-333e6c234387f048557fdd4235c5a1809474f6f2.tar.xz packages-333e6c234387f048557fdd4235c5a1809474f6f2.zip |
user/php7: bump to 7.2.16, modernize, build with enchant-2
* Drop CVE-2018-19935.patch: included as of version 7.2.14
Diffstat (limited to 'user/php7/CVE-2018-19935.patch')
-rw-r--r-- | user/php7/CVE-2018-19935.patch | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/user/php7/CVE-2018-19935.patch b/user/php7/CVE-2018-19935.patch deleted file mode 100644 index e24310f42..000000000 --- a/user/php7/CVE-2018-19935.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 648fc1e369fc05fb9200a42c7938912236b2a318 Mon Sep 17 00:00:00 2001 -From: Stanislav Malyshev <stas@php.net> -Date: Sun, 11 Nov 2018 10:04:01 -0800 -Subject: [PATCH] Fix #77020: null pointer dereference in imap_mail - -If an empty $message is passed to imap_mail(), we must not set message -to NULL, since _php_imap_mail() is not supposed to handle NULL pointers -(opposed to pointers to NUL). - -(cherry picked from commit 7edc639b9ff1c3576773d79d016abbeed1f93846) ---- - ext/imap/php_imap.c | 1 - - ext/imap/tests/bug77020.phpt | 15 +++++++++++++++ - 2 files changed, 15 insertions(+), 1 deletion(-) - create mode 100644 ext/imap/tests/bug77020.phpt - -diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c -index 9e626a4..01d1a5f 100644 ---- a/ext/imap/php_imap.c -+++ b/ext/imap/php_imap.c -@@ -4116,7 +4116,6 @@ PHP_FUNCTION(imap_mail) - if (!ZSTR_LEN(message)) { - /* this is not really an error, so it is allowed. */ - php_error_docref(NULL, E_WARNING, "No message string in mail command"); -- message = NULL; - } - - if (_php_imap_mail(ZSTR_VAL(to), ZSTR_VAL(subject), ZSTR_VAL(message), headers?ZSTR_VAL(headers):NULL, cc?ZSTR_VAL(cc):NULL, -diff --git a/ext/imap/tests/bug77020.phpt b/ext/imap/tests/bug77020.phpt -new file mode 100644 -index 0000000..8a65232 ---- /dev/null -+++ b/ext/imap/tests/bug77020.phpt -@@ -0,0 +1,15 @@ -+--TEST-- -+Bug #77020 (null pointer dereference in imap_mail) -+--SKIPIF-- -+<?php -+if (!extension_loaded('imap')) die('skip imap extension not available'); -+?> -+--FILE-- -+<?php -+imap_mail('1', 1, NULL); -+?> -+===DONE=== -+--EXPECTF-- -+Warning: imap_mail(): No message string in mail command in %s on line %d -+%s -+===DONE=== --- -2.1.4 - |